/*
Theme Name: SkyDent Theme
Theme URI: https://yoursite.com
Description: Custom SkyDent E-Commerce Theme
Author: PurpleDotts
Version: 1.0
*/

/* --- Global Reset --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #f7f7f7;
    /* Just for contrast against header */
}

/* --- Dentalkart Header Container --- */
.dentalkart-header {
    background-color: #ffffff;
    border-bottom: 2px solid #e0e0e0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: box-shadow;
}

.dentalkart-header.is-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    border-bottom-color: transparent;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Full Width Override for Header ONLY */
.dentalkart-header .header-container {
    max-width: 100%;
    padding: 0 30px;
    /* Provides a nice edge buffer for ultra-wide screens */
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* --- Top Row --- */
.header-top {
    padding-top: 15px;
    border-bottom: 1px solid #f0f0f0;
}

/* Logo */
.logo-area .custom-logo-text {
    display: flex;
    align-items: center;
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
}

.custom-logo-text .icon-group {
    display: flex;
    margin-right: 5px;
}

.custom-logo-text .tooth-1 {
    color: #0253A3;
    font-size: 18px;
    transform: rotate(-10deg);
}

.custom-logo-text .tooth-2 {
    color: #F26722;
    font-size: 18px;
    transform: rotate(10deg);
    margin-left: -4px;
}

.custom-logo-text .dental-text {
    color: #0253A3;
}

.custom-logo-text .kart-text {
    color: #F26722;
    font-size: 14px;
    /* small 'kart' */
    align-self: flex-end;
    margin-bottom: 4px;
}

/* Delivery Pincode */
.delivery-pincode {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    background-color: #f4f8fc;
    padding: 6px 12px;
    border-radius: 40px;
}

.pincode-icon i {
    color: #0253A3;
    font-size: 18px;
}

.pincode-text {
    display: flex;
    flex-direction: column;
}

.pincode-text .delivering-to {
    font-size: 11px;
    font-weight: 600;
    color: #333;
}

.pincode-text .enter-pincode {
    font-size: 12px;
    font-weight: 700;
    color: #0253A3;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Search Bar */
.header-search {
    flex-grow: 1;
    margin: 0 30px;
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #151718;
    border-radius: 4px;
    padding: 0;
    background-color: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    overflow: hidden;
    height: 46px;
}

.search-form:focus-within {
    border-color: #b0c4d8;
    box-shadow: 0 0 0 2px rgba(2, 83, 163, 0.08);
}

.search-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0 14px;
    cursor: pointer;
    height: 100%;
    flex-shrink: 0;
}

.search-icon {
    color: #999;
    font-size: 15px;
    transition: color 0.2s;
}

.search-form:focus-within .search-icon {
    color: #0253A3;
}

.search-form input[type="search"] {
    border: none;
    outline: none;
    width: 100%;
    padding: 0;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    background: transparent;
    height: 100%;
    /* remove browser default clear/search UI */
    -webkit-appearance: none;
    appearance: none;
}

.search-form input[type="search"]::-webkit-search-cancel-button,
.search-form input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

.search-form input::placeholder {
    color: #aab4c0;
    font-size: 13.5px;
}

.camera-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px;
    height: 100%;
    border-left: 1.5px solid #e8edf2;
    cursor: pointer;
    flex-shrink: 0;
    background: none;
    border-top: none;
    border-right: none;
    border-bottom: none;
    transition: background-color 0.2s;
}

.camera-icon-btn:hover {
    background-color: #f4f8fc;
}

.camera-icon {
    color: #7a8fa3;
    font-size: 15px;
    transition: color 0.2s;
}

.camera-icon-btn:hover .camera-icon {
    color: #0253A3;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.login-item i {
    font-size: 18px;
}

.cart-item {
    background-color: #1F4F7A;
    /* Dark blue pill */
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    /* Or slightly rounded */
}

.cart-item i {
    font-size: 16px;
}

/* --- Bottom Nav Row --- */
.header-bottom {
    background-color: #fff;
}

.bottom-nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Centered like in the screenshot */
    list-style: none;
    gap: 24px;
    /* Reduced gap to exactly match Dentalkart */
}

.bottom-nav li {
    padding: 12px 0;
}

.bottom-nav a {
    text-decoration: none;
    color: #454545;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bottom-nav a:hover {
    color: #0253A3;
}

.category-menu a {
    color: #333;
    font-weight: 700;
}

.category-menu i {
    font-size: 14px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .delivery-pincode {
        display: none;
        /* Hide on smaller screens */
    }

    .flex-container {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-top {
        flex-wrap: wrap;
    }

    .header-search {
        order: 3;
        max-width: 100%;
        margin-top: 10px;
    }

    .bottom-nav ul {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: flex-start;
    }
}

/* --- Hero Banner & Slider --- */
.hero-slider-section {
    padding: 20px 0;
    background-color: #f7f7f7;
}

.heroSwiper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hero-image {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 450px;
    /* Adjust according to actual images */
}

/* Swiper Nav Arrows customized to look like Dentalkart circle buttons */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 16px;
    font-weight: bold;
}

/* Pagination Dots */
.heroSwiper .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.5;
}

.heroSwiper .swiper-pagination-bullet-active {
    background-color: #333;
    /* or blue */
    opacity: 1;
}

/* --- Trust Badges Info Bar --- */
.trust-badge-bar {
    background-color: #ebf4fb;
    /* Light blue */
    border-radius: 8px;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1a4267;
    /* Dark blue typography */
    font-weight: 600;
    font-size: 13px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 18px;
    color: #3f4756;
}

@media (max-width: 768px) {
    .trust-badge-bar {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* --- Section Core --- */
.top-brands-section,
.top-categories-section {
    padding: 30px 0;
    background-color: #fff;
    border-top: 1px solid #f0f0f0;
}

.section-header {
    margin-bottom: 25px;
}

.section-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a4267;
    /* Match Dental Kart dark color */
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.section-title i {
    font-size: 16px;
    color: #555;
}

.view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: #00AEEF;
    /* SkyDent Blue */
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.view-all-link i {
    font-size: 12px;
}

.view-all-link:hover {
    color: #008cc0;
}

/* --- Top Brands --- */
.brand-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}

.brand-image-box {
    border: 1px solid #d1d5db;
    /* Darker border for large monitors */
    border-radius: 16px;
    /* softer rounded square */
    padding: 10px;
    margin-bottom: 10px;
    background-color: #fff;
    transition: box-shadow 0.3s;
    width: 100%;
    aspect-ratio: 1 / 1;
    /* enforces exact rounded square */
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-card:hover .brand-image-box {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.brand-image-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
}

.brand-name {
    font-size: 12px;
    color: #555;
    font-weight: 500;
    text-align: center;
}

/* Custom Arrows */
.brandsSwiper .swiper-button-next,
.brandsSwiper .swiper-button-prev {
    background-color: #fff;
    color: #333;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.brandsSwiper .swiper-button-next:after,
.brandsSwiper .swiper-button-prev:after {
    font-size: 12px;
    font-weight: bold;
}

/* --- Top Categories --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    /* row-gap column-gap */
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-align: center;
    transition: transform 0.2s;
}

.category-card:hover {
    transform: translateY(-3px);
}

.category-image-box {
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.category-image-box img {
    border-radius: 4px;
    height: 100px;
    max-width: 100%;
    object-fit: contain;
}

.category-name {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    line-height: 1.3;
}

/* --- Featured Categories Grid (Bento Box) --- */
.featured-categories-section {
    padding: 20px 0 40px;
    background-color: #fff;
}

.featured-bento-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.bento-box {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
}

.bento-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bento-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Desktop Grid Layout */
@media (min-width: 900px) {
    .featured-bento-grid {
        grid-template-columns: 3.5fr 3.5fr 3fr;
        grid-template-rows: repeat(2, 230px);
    }

    .bento-wide {
        height: 100%;
    }

    .bento-tall {
        grid-row: span 2;
        height: 100%;
    }
}

/* 2-Col Promo Grid Layout */
.promo-bento-grid-2col {
    display: grid;
    gap: 20px;
}

@media (min-width: 900px) {
    .promo-bento-grid-2col {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(2, 200px);
    }

    /* Force the first two banners into the left column */
    .promo-bento-grid-2col>*:nth-child(1),
    .promo-bento-grid-2col>*:nth-child(2) {
        grid-column: 1;
        height: 100%;
    }

    /* Force the third banner into the right column spanning full height */
    .promo-tall-right {
        grid-column: 2;
        grid-row: 1 / span 2;
        height: 100%;
    }
}

/* --- Dynamic Product Slider Cards --- */
.products-slider-section {
    border-top: 1px solid #eaeaea;
}

.custom-product-card {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    padding: 15px;
    position: relative;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    z-index: 10;
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #f26722;
    /* Dentalkart Orange */
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    z-index: 2;
    text-transform: uppercase;
}

.product-image {
    text-align: center;
    margin-bottom: 15px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.product-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 13px;
    margin: 0 0 8px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: #1a4267;
    /* Dark blue text */
    text-decoration: none;
    font-weight: 500;
}

.product-title a:hover {
    color: #00AEEF;
    /* Light blue on hover */
}

.product-rating {
    margin-bottom: 8px;
    font-size: 11px;
    color: #fca120;
    /* Rating yellow */
}

.rating-count {
    color: #888;
    margin-left: 4px;
}

.product-price {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-top: auto;
    margin-bottom: 12px;
}

.product-price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
    margin-right: 5px;
}

.product-price ins {
    text-decoration: none;
    color: #1a4267;
}

/* Add to Cart Button override */
.custom-product-card .button {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #fff !important;
    color: #0253A3 !important;
    /* Brand Blue */
    border: 1px solid #0253A3 !important;
    padding: 8px 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    transition: background-color 0.2s, color 0.2s;
    text-decoration: none;
    margin-top: auto;
}

.custom-product-card .button:hover {
    background-color: #0253A3 !important;
    color: #fff !important;
}

/* Custom Arrows */
.productSwiper .swiper-button-next,
.productSwiper .swiper-button-prev {
    background-color: #fff;
    color: #333;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.productSwiper .swiper-button-next:after,
.productSwiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: bold;
}

/* =========================================
   --- V2 Product Card Design (External Meta) ---
   ========================================= */
.custom-product-card.style-v2 {
    background: transparent;
    border: none;
    padding: 0;
    margin-bottom: 10px;
    box-shadow: none;
    height: 100%;
}

.custom-product-card.style-v2:hover {
    transform: none;
    box-shadow: none;
}

/* Image Box */
.product-image-box {
    background: #fff;
    border: 1px solid #d1d5db;
    /* Darker border for large monitors */
    border-radius: 12px;
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    margin-bottom: 25px;
    /* space for the absolute ADD button */
    transition: border-color 0.3s;
}

.product-image-box:hover {
    border-color: #c2d5e6;
}

.wishlist-icon {
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 16px;
    color: #1a4267;
    cursor: pointer;
    transition: color 0.2s;
}

.wishlist-icon:hover {
    color: #f26722;
}

.freebie-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: #a855f7;
    /* Purple */
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 4px;
    z-index: 2;
    text-transform: capitalize;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-image-box .image-link {
    max-height: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-box img {
    max-height: 130px;
    object-fit: contain;
}

/* ADD Button overlapping */
.add-btn-wrapper {
    position: absolute;
    bottom: -15px;
    right: 15px;
    z-index: 5;
}

.dentalkart-add-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #1a4267;
    border: 1px solid #c2d5e6;
    border-radius: 4px;
    padding: 4px 15px;
    min-width: 65px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    line-height: 1.2;
    transition: all 0.2s;
}

.dentalkart-add-btn:hover {
    background: #f7f9fb;
    border-color: #1a4267;
}

.add-subtitle {
    font-size: 9px;
    font-weight: 500;
    color: #777;
    margin-top: 1px;
}

/* Meta Data External */
.product-meta-external {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 0 5px;
}

.product-meta-external .product-title {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.product-excerpt {
    font-size: 11px;
    color: #777;
    margin: 0 0 10px 0;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-row {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-price-row del {
    font-weight: 400;
    font-size: 11px;
    color: #999;
}

.product-price-row ins {
    text-decoration: none;
    color: #111;
}

.d-coin-reward {
    font-size: 11px;
    font-weight: 700;
    color: #fca120;
    /* coin orange */
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 12px;
}

.d-coin-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 14px;
    height: 14px;
    border: 1.5px solid #fca120;
    border-radius: 50%;
    font-size: 10px;
}

.similar-products-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d1fae5;
    /* Light green */
    color: #065f46;
    /* dark green text */
    font-size: 10px;
    font-weight: 600;
    padding: 7px 12px;
    border-radius: 4px;
    text-decoration: none;
    margin-top: auto;
    transition: background-color 0.2s;
}

.similar-products-btn:hover {
    background-color: #bbf7d0;
}

/* =========================================
   --- WooCommerce Single Product Page Customization (Dentalkart Exact Replica) ---
   ========================================= */

/* Main wrapper styling */
.custom-single-product-page {
    background-color: #f7f9fc;
    padding: 20px 0;
}

/* Breadcrumb */
.dk-breadcrumb {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
}

.dk-breadcrumb a {
    color: #0253A3;
    text-decoration: none;
}

.dk-breadcrumb a:hover {
    text-decoration: underline;
}

/* Custom inline breadcrumb under title */
.dk-custom-breadcrumb {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 20px;
}

.dk-custom-breadcrumb a {
    color: #0253A3 !important;
    /* SkyDent Blue */
    text-decoration: none;
    font-weight: 500;
}

.dk-custom-breadcrumb a:hover {
    text-decoration: underline;
}

/* 40 / 60 Top Split layout */
.product-top-split {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 30px;
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .product-top-split {
        grid-template-columns: 1fr;
    }
}

/* Image Column */
.product-gallery-col {
    background-color: #fff;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    padding: 20px;
    position: relative;
}

.gallery-wrapper {
    position: relative;
    width: 100%;
}

.gallery-wrapper .woocommerce-product-gallery {
    width: 100% !important;
    float: none !important;
}

/* Floating Actions on Image */
.wishlist-float,
.share-float {
    position: absolute;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eef1f5;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #444;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.2s;
}

.wishlist-float:hover,
.share-float:hover {
    background: #f7f9fc;
}

.wishlist-float {
    top: 10px;
}

.share-float {
    top: 55px;
}

/* Info Column Base */
.product-info-col {
    background: transparent;
    padding: 0 10px;
}

.product_title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-short-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.brand-row {
    font-size: 13px;
    color: #555;
    margin-bottom: 20px;
}

.brand-link {
    color: #0253A3;
    text-decoration: none;
    font-weight: 500;
}

/* Price Block */
.product-price-block {
    margin-bottom: 12px;
}

.product-price-block .price {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.product-price-block del {
    font-size: 16px;
    color: #999;
    font-weight: 400;
}

.product-price-block ins {
    text-decoration: none;
}

/* D-Coin Row */
.product-d-coin-row {
    font-size: 13px;
    color: #111;
    background-color: #fff;
    border: 1px solid #eef1f5;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-d-coin-row .d-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fca120;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
}

/* Add to Cart native override Dentalkart Style */
.add-to-cart-wrapper-dk {
    margin-bottom: 25px;
}

.add-to-cart-wrapper-dk form.cart {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.add-to-cart-wrapper-dk .quantity {
    display: flex;
    align-items: center;
}

.add-to-cart-wrapper-dk .quantity input.qty {
    width: 65px;
    height: 50px;
    border: 1px solid #eef1f5;
    border-radius: 4px;
    font-size: 18px;
    text-align: center;
    font-weight: 600;
    background: #fff;
}

.add-to-cart-wrapper-dk button.single_add_to_cart_button {
    flex-grow: 1;
    height: 50px;
    background-color: #f26722 !important;
    /* Dentalkart Orange */
    color: #fff !important;
    border: none !important;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s;
    text-transform: uppercase;
}

.add-to-cart-wrapper-dk button.single_add_to_cart_button:hover {
    background-color: #e05e1e !important;
}

/* Delivery Pincode Check */
.product-delivery-check {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    margin-bottom: 20px;
}

.product-delivery-check .delivery-icon i {
    font-size: 20px;
    color: #666;
}

.product-delivery-check .delivery-info {
    flex-grow: 1;
}

.product-delivery-check .del-title {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 8px;
}

.product-delivery-check .del-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    height: 40px;
}

.product-delivery-check .del-input-group input {
    flex-grow: 1;
    border: none;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    height: 100%;
}

.product-delivery-check .del-input-group button {
    background: #f7f9fc;
    border: none;
    border-left: 1px solid #ccc;
    padding: 0 15px;
    color: #0253A3;
    font-weight: 600;
    cursor: pointer;
    height: 100%;
    transition: background 0.2s;
}

.product-delivery-check .del-input-group button:hover {
    background: #eef1f5;
}

/* Offers Box */
.product-offers-box {
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.offer-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-title i {
    color: #10b981;
}

.product-offers-box ul {
    list-style: none;
    font-size: 13px;
    color: #333;
    margin: 0;
    padding: 0;
}

.product-offers-box li {
    margin-bottom: 8px;
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.product-offers-box li::before {
    /* content: "\2022"; */
    position: absolute;
    left: 4px;
    color: #ccc;
}

/* Bottom Structure: Tabs & Sidebar */
.product-bottom-split {
    display: grid;
    grid-template-columns: 7.5fr 2.5fr;
    gap: 30px;
}

@media (max-width: 900px) {
    .product-bottom-split {
        grid-template-columns: 1fr;
    }
}

.product-tabs-area {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eef1f5;
    padding: 25px;
}

.product-sidebar-area {
    align-items: start;
}

/* Sidebar Styling */
.sidebar-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    padding: 20px;
}

.sidebar-widget h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a4267;
    margin-bottom: 15px;
    border-bottom: 1px solid #eef1f5;
    padding-bottom: 10px;
}

.benefit-list {
    list-style: none;
    font-size: 12px;
    color: #444;
}

.benefit-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-list i {
    color: #10b981;
    font-size: 14px;
}

/* --- Exact Dentalkart Brand Card & Tabs --- */
.dk-brand-card {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    background-color: #fff;
    margin-bottom: 25px;
    gap: 15px;
}

.brand-card-logo {
    width: 45px;
    height: 45px;
    border: 1px solid #eef1f5;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.brand-card-logo .et-logo-placeholder {
    color: #4a90e2;
    background-color: #f0f7ff;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.brand-card-text {
    display: flex;
    flex-direction: column;
}

.brand-label {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.dk-brand-card .view-more {
    font-size: 13px;
    color: #4a90e2;
    font-style: italic;
    text-decoration: none;
    font-weight: 500;
}

.dk-brand-card .view-more:hover {
    text-decoration: underline;
}

/* Dentalkart exact Tabs styling */
.woocommerce-tabs ul.tabs {
    list-style: none;
    border-bottom: 2px solid #eef1f5;
    margin: 0 0 25px 0;
    padding: 0;
    display: flex;
    gap: 0;
}

.woocommerce-tabs ul.tabs li {
    margin: 0;
    border: none;
    background: transparent;
    padding: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    color: #4a5568 !important;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
    background: transparent !important;
    text-decoration: none;
}

.woocommerce-tabs ul.tabs li:hover a {
    color: #1a4267 !important;
}

.woocommerce-tabs ul.tabs li.active a {
    color: #1a4267 !important;
    border-bottom-color: #f26722 !important;
    /* Dentalkart orange indicator */
}

/* Tab Panes */
.woocommerce-Tabs-panel {
    padding-top: 5px;
    font-size: 14px;
    color: #444;
    line-height: 1.6;
}

.woocommerce-Tabs-panel h2 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
    display: none;
    /* Dentalkart doesn't usually show the big repeating H2 inside the custom tab body! */
}

.woocommerce-Tabs-panel .dk-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-Tabs-panel .dk-features-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #333;
    font-size: 14px;
}

.woocommerce-Tabs-panel .dk-features-list li::before {
    /* content: "\2022"; */
    position: absolute;
    left: 0;
    color: #999;
}

/* Sticky Cart Bar */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    z-index: 1000;
}

.sticky-product-info img {
    height: 40px;
    width: auto;
    border: 1px solid #eef1f5;
    border-radius: 4px;
    margin-right: 10px;
}

.sticky-title {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.sticky-action {
    gap: 20px;
}

.sticky-price .price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: #111;
}

.sticky-price del {
    font-size: 12px;
    color: #999;
}

.sticky-add-btn {
    background-color: #111;
    color: #fff;
    padding: 10px 30px;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s;
    display: inline-flex;
    align-items: center;
}

.sticky-add-btn:hover {
    background-color: #333;
}

/* =========================================
   --- Dentalkart Footer Customization ---
   ========================================= */

.dentalkart-footer {
    background-color: #f5f7fa;
    border-top: 1px solid #e2e8f0;
    margin-top: 40px;
    font-family: inherit;
    /* Optional: background pattern url() here */
}

/* Quick CTA Strip */
.footer-cta-bar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eef1f5;
}

.cta-text {
    font-size: 14px;
    font-weight: 800;
    color: #111;
}

.cta-btn {
    padding: 8px 16px;
    border: 2px solid #0253A3;
    color: #0253A3;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.cta-btn:hover {
    background-color: #0253A3;
    color: #fff;
}

/* Connect Layer (Socials & Apps) */
.footer-connect-layer {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eef1f5;
}

.connect-title {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-right: 15px;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.2s;
}

.social-icons a:hover {
    transform: translateY(-2px);
}

.social-icons a.fb {
    background-color: #3b5998;
}

.social-icons a.ig {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-icons a.x {
    background-color: #000;
}

.social-icons a.yt {
    background-color: #ff0000;
}

.social-icons a.in {
    background-color: #007bb5;
}

.followers-count {
    font-size: 12px;
    color: #444;
    font-weight: 600;
    margin-left: 15px;
}

.app-badges img {
    height: 35px;
    margin-right: 10px;
    border-radius: 4px;
}

/* Main 5-Column Grid */
.footer-main-area {
    padding: 50px 0 20px 0;
}

.footer-grid-5col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
    /* 5th col is larger */
    gap: 20px;
}

@media (max-width: 900px) {
    .footer-grid-5col {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-grid-5col {
        grid-template-columns: 1fr;
    }
}

.footer-heading {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #0253A3;
}

/* 5th Column Dashed Separator */
.address-col {
    border-left: 1px dashed #cbd5e1;
    padding-left: 30px;
}

@media (max-width: 900px) {
    .address-col {
        border-left: none;
        padding-left: 0;
        border-top: 1px dashed #cbd5e1;
        padding-top: 20px;
    }
}

.address-content p {
    font-size: 13px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 12px;
}

.address-content i {
    width: 20px;
    color: #0253A3;
}

.warehouses-strip {
    font-size: 12px;
    color: #777;
    margin-top: 40px;
    padding-top: 15px;
    border-top: 1px solid #e2e8f0;
}

/* Bottom Copyright Bar */
.footer-bottom-bar {
    background-color: #fff;
    padding: 15px 0;
    border-top: 1px solid #eef1f5;
}

.bottom-title {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-right: 15px;
}

.payment-partners img {
    height: 25px;
}

.copyright-info p {
    font-size: 12px;
    font-weight: 600;
    color: #555;
    margin: 0;
}

/* =========================================
   --- Image Grid Listing Pages (Categories/Brands) ---
   ========================================= */

.custom-listing-page-wrapper {
    background-color: #fff;
    padding: 20px 0 60px 0;
    min-height: 80vh;
}

/* Custom Image Breadcrumb Header */
.dk-breadcrumb-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: #999;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.dk-breadcrumb-row a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
}

.dk-breadcrumb-row a:hover {
    color: #0253A3;
}

.dk-breadcrumb-row .sep {
    color: #cbd5e1;
}

.dk-breadcrumb-row .current {
    color: #ea580c;
    /* Orange */
}

/* Page Title */
.page-main-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a4267;
    /* Dark blue */
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* The Card Grid */
.dk-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (min-width: 600px) {
    .dk-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (min-width: 900px) {
    .dk-card-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1200px) {
    .dk-card-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}

/* The Grid Card */
.dk-grid-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #eef1f5;
    border-radius: 6px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    padding-bottom: 15px;
}

.dk-grid-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: #cbd5e1;
}

/* Card Image Area */
.dk-card-img {
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.dk-card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Card Bottom Label */
.dk-card-label {
    font-size: 13px;
    font-weight: 500;
    color: #4a5568;
    text-align: center;
    padding: 0 10px;
    line-height: 1.3;
}

.dk-grid-card:hover .dk-card-label {
    color: #1a4267;
}

/* =========================================
   --- Header Category Mega Menu Styling ---
   ========================================= */

.header-bottom {
    position: relative !important;
    /* MUST be relative so dropdown top: 100% starts directly under header */
}

.bottom-nav,
.bottom-nav ul,
.category-menu.has-mega-menu {
    position: static !important;
}

/* Ensure header container is static if we want full width centering */
.dentalkart-header .header-bottom>.header-container {
    position: static !important;
}

.mega-menu-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    margin: 5px auto 0 auto;
    width: 1150px;
    /* Full desktop width */
    max-width: calc(100vw - 30px);
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid #eef1f5;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mega-menu-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mega Menu Top: Search Wrapper */
.mega-menu-top {
    padding: 15px 30px;
    border-bottom: 1px solid #eef1f5;
    background-color: #fff;
    /* White top */
    display: flex;
    justify-content: center;
    /* Center the search box */
}

.mega-search-wrapper {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #d1d5db;
    border-radius: 30px;
    /* Pill shape like Dentalkart */
    padding: 10px 18px;
    width: 100%;
    max-width: 650px;
    /* Constrain width so it looks neatly placed in the middle */
}

.mega-search-wrapper i {
    color: #9ca3af;
    margin-right: 10px;
    font-size: 14px;
}

.mega-search-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 14px;
    color: #374151;
    background: transparent;
}

/* Mega Menu Body */
.mega-menu-content {
    display: flex;
    height: 520px;
    /* fixed height layout like Dentalkart */
}

/* Left Sidebar */
.mega-menu-sidebar {
    width: 250px;
    background-color: #fff;
    /* White sidebar! */
    border-right: 1px solid #eef1f5;
    display: flex;
    flex-direction: column;
}

.mega-sidebar-header {
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    padding: 15px 20px 5px 20px;
    letter-spacing: 0.5px;
}

.mega-parent-cats {
    display: block !important;
    /* Force block to stop flex inherited from nav ul from centering children */
    list-style: none;
    margin: 0;
    padding: 10px;
    overflow-y: auto;
    flex-grow: 1;
}

/* Custom scrollbar for sidebar */
.mega-parent-cats::-webkit-scrollbar {
    width: 5px;
}

.mega-parent-cats::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 3px;
}

/* =========================================
   --- Category / Shop Archive Styles ---
   ========================================= */

.archive-filter-row .filter-pill {
    transition: all 0.2s;
}

.archive-filter-row .filter-pill:hover {
    border-color: #0253A3 !important;
    color: #0253A3 !important;
}

.archive-filter-row .right-sort form.woocommerce-ordering select {
    border: 1px solid #cbd5e1;
    padding: 6px 30px 6px 15px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    color: #1f2937;
    background: #fff;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 14px;
}

.archive-filter-row .right-sort form.woocommerce-ordering select:focus {
    outline: none;
    border-color: #0253A3;
}

.archive-breadcrumbs nav.woocommerce-breadcrumb {
    display: inline-block;
    color: #9ca3af;
    font-weight: 500;
}

.archive-breadcrumbs nav.woocommerce-breadcrumb a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 600;
}

.archive-breadcrumbs nav.woocommerce-breadcrumb a:hover {
    color: #0253A3;
}

.mega-parent-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    margin-bottom: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    color: #4b5563;
    border-radius: 6px;
}

.mega-parent-item:hover,
.mega-parent-item.active {
    background-color: #e5f0fa;
    /* Light blue hover/active state */
    color: #1a4267;
}

.mega-parent-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mega-parent-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.mega-parent-name {
    font-size: 13px;
    font-weight: 600;
}

.mega-parent-item i.fa-angle-right {
    font-size: 11px;
    color: #9ca3af;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s;
}

.mega-parent-item:hover i.fa-angle-right,
.mega-parent-item.active i.fa-angle-right {
    opacity: 1;
    transform: translateX(0);
    color: #1a4267;
}

.mega-sidebar-footer {
    padding: 15px 20px;
    background-color: #fff;
}

.mega-sidebar-footer a {
    color: #0253A3;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
}

/* Right Panels */
.mega-menu-panels {
    flex-grow: 1;
    position: relative;
    background-color: #f6f9fc;
    /* Light blue panel like Dentalkart! */
    padding: 30px;
    overflow-y: auto;
}

.mega-sub-panel {
    display: none;
    animation: fadeIn 0.2s ease;
    height: 100%;
}

.mega-sub-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mega-panel-header h3 {
    margin: 0 0 25px 0;
}

.mega-panel-header h3 a {
    font-size: 15px;
    font-weight: 800;
    color: #1f2937;
    text-decoration: none;
}

.mega-sub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px 25px;
}

.mega-sub-cat {
    color: #374151;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.15s;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.mega-sub-cat:hover {
    color: #0253A3;
}

.mega-sub-cat .count {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    background-color: #e5e7eb;
    padding: 1px 6px;
    border-radius: 12px;
    margin-left: 8px;
}

.no-subcats {
    color: #9ca3af;
    font-size: 14px;
    grid-column: 1 / -1;
}

/* Decorative Vertical Text (Restorative rotated) like Dentalkart */
.mega-vertical-text {
    position: absolute;
    right: 25px;
    bottom: 80px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 45px;
    font-weight: 800;
    color: #e2e8f0;
    /* Faint gray */
    text-transform: uppercase;
    letter-spacing: 2px;
    pointer-events: none;
    z-index: 0;
}

/* Z-index fix for sub grid to be clickable over the background text */
.mega-panel-header,
.mega-sub-grid {
    position: relative;
    z-index: 10;
}

/* =========================================
   --- WhatsApp Float Button ---
   ========================================= */
.whatsapp-float-btn {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background-color: #20b858;
    color: #fff;
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float-btn {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 30px;
    }
}

/* --- Single Product Gallery (Swiper) --- */
.skydent-product-gallery-wrapper {
    width: 100%;
    position: relative;
    padding-bottom: 20px;
}

.skydent-main-gallery-swiper {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.skydent-main-gallery-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.skydent-main-gallery-swiper img.skydent-main-img {
    width: 100%;
    max-height: 450px;
    object-fit: contain;
}

.skydent-thumb-gallery-swiper {
    width: 100%;
    box-sizing: border-box;
    padding: 0 40px;
    /* Space for arrows */
}

.skydent-thumb-gallery-swiper .swiper-slide {
    width: 20%;
    height: 100%;
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.skydent-thumb-gallery-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: #0253A3;
    /* Brand Blue */
}

.skydent-thumb-gallery-swiper img.skydent-thumb-img {
    display: block;
    width: 100%;
    height: 65px;
    object-fit: contain;
    background: #fff;
    padding: 2px;
}

.skydent-thumb-gallery-swiper .swiper-button-prev,
.skydent-thumb-gallery-swiper .swiper-button-next {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    color: #333;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skydent-thumb-gallery-swiper .swiper-button-prev:after,
.skydent-thumb-gallery-swiper .swiper-button-next:after {
    display: none;
    /* Hide default swiper font icon */
}

.skydent-thumb-gallery-swiper .swiper-button-prev {
    left: 0;
}

.skydent-thumb-gallery-swiper .swiper-button-next {
    right: 0;
}

.skydent-thumb-gallery-swiper i {
    font-size: 12px;
}

/* --- Single Product Layout --- */
.custom-single-product {
    max-width: 1300px;
    margin: 20px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    padding: 20px;
}

.product-top-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.product-gallery-col {
    flex: 0 0 45%;
    max-width: 45%;
}

.product-info-col {
    flex: 0 0 calc(55% - 30px);
    max-width: calc(55% - 30px);
}

.product-bottom-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.product-tabs-area {
    flex: 0 0 70%;
    max-width: 70%;
}

.product-sidebar-area {
    flex: 0 0 calc(30% - 30px);
    max-width: calc(30% - 30px);
}

@media (max-width: 900px) {

    .product-gallery-col,
    .product-info-col,
    .product-tabs-area,
    .product-sidebar-area {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

.gallery-wrapper {
    position: relative;
    /* Removed extra borders and padding to avoid double-boxing */
}

.wishlist-float,
.share-float {
    position: absolute;
    top: 15px;
    z-index: 10;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    color: #555;
    transition: all 0.2s;
}

.wishlist-float:hover,
.share-float:hover {
    color: #0253A3;
}

.wishlist-float {
    right: 15px;
}

.share-float {
    right: 60px;
}

/* Fix product title size */
.product-info-col .product_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #333;
}

/* --- Single Product Detail Styling --- */
.dk-custom-breadcrumb {
    margin-bottom: 12px;
}

.dk-custom-breadcrumb nav {
    font-size: 13px;
    color: #666;
}

.dk-custom-breadcrumb nav a {
    color: #0253A3;
    text-decoration: none;
}

.dk-custom-breadcrumb nav a:hover {
    text-decoration: underline;
}

.breadcrumb-delimiter {
    margin: 0 5px;
    color: #999;
}

.product-price-block {
    margin: 20px 0;
    font-size: 28px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-price-block del {
    color: #999;
    font-weight: 400;
    font-size: 18px;
}

.product-price-block ins {
    text-decoration: none;
    color: #333;
}

.product-d-coin-row {
    background: #fffbea;
    border: 1px solid #fce8a1;
    padding: 8px 15px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 25px;
}

.d-icon {
    background: #fca120;
    color: #fff;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
}

.product-short-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-short-desc ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.product-short-desc li {
    margin-bottom: 5px;
}

/* Add to Cart */
.add-to-cart-wrapper-dk {
    margin-bottom: 25px;
    display: flex;
    gap: 15px;
}

.add-to-cart-wrapper-dk form.cart {
    display: flex;
    gap: 15px;
    align-items: center;
}

.add-to-cart-wrapper-dk .quantity {
    display: flex;
    align-items: center;
}

.add-to-cart-wrapper-dk .quantity input {
    width: 60px;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-align: center;
    font-size: 16px;
}

.add-to-cart-wrapper-dk button.single_add_to_cart_button {
    background: #0253A3;
    color: #fff;
    border: none;
    padding: 0 40px;
    height: 45px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-to-cart-wrapper-dk button.single_add_to_cart_button:hover {
    background: #024383;
}

/* Delivery Box */
.product-delivery-check {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.delivery-icon {
    font-size: 24px;
    color: #0253A3;
}

.del-title {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.del-input-group {
    display: flex;
    gap: 10px;
}

.del-input-group input {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 12px;
    font-size: 14px;
    width: 150px;
}

.del-input-group button {
    background: #fff;
    border: 1px solid #0253A3;
    color: #0253A3;
    padding: 8px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
}

/* Offers Box */
.product-offers-box {
    background: #f9f9f9;
    border: 1px dashed #ccc;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 25px;
}

.offer-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.offer-title i {
    color: #e53935;
}

.product-offers-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 13px;
    color: #555;
}

.product-offers-box li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.product-offers-box li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e53935;
    font-size: 16px;
    line-height: 1;
}

/* Brand Card */
.dk-brand-card {
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-card-logo {
    width: 60px;
    height: 60px;
    border: 1px solid #ddd;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}

.et-logo-placeholder {
    font-weight: 700;
    color: #ccc;
    font-size: 20px;
}

.brand-label {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px;
}

.view-more {
    font-size: 13px;
    color: #0253A3;
    text-decoration: none;
    font-weight: 500;
}

/* ==========================================================================
   WooCommerce Premium Cart Page Styling
   ========================================================================== */
.woocommerce-cart .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin: 40px auto;
    max-width: 1200px;
}

.woocommerce-cart .woocommerce::before,
.woocommerce-cart .woocommerce::after {
    display: none !important;
}

/* Left Column: Cart Form */
.woocommerce-cart .woocommerce-cart-form {
    flex: 1 1 65%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
    overflow: hidden;
    border: 1px solid #eee;
}

/* Cart Table */
.woocommerce-cart .woocommerce-cart-form__contents {
    border: none !important;
    border-collapse: separate;
    border-spacing: 0;
    width: 100%;
    margin: 0;
}

.woocommerce-cart .woocommerce table.shop_table th {
    background: #f4f8fc;
    color: #1a4267;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    padding: 18px 15px;
    border: none;
    border-bottom: 1px solid #e0ebf5;
}

.woocommerce-cart .woocommerce table.shop_table td {
    padding: 25px 15px;
    border-bottom: 1px solid #eee;
    border-top: none;
    vertical-align: middle;
}

.woocommerce-cart .woocommerce table.shop_table tr:last-child td {
    border-bottom: none;
}

/* Product Info in Table */
.woocommerce-cart .product-thumbnail img {
    width: 90px !important;
    height: auto;
    border-radius: 6px;
    border: 1px solid #eee;
    padding: 5px;
}

.woocommerce-cart .product-name a {
    color: #333;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: block;
    line-height: 1.4;
    margin-bottom: 5px;
}

.woocommerce-cart .product-name a:hover {
    color: #0253A3;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
    font-weight: 700 !important;
    color: #111 !important;
    font-size: 16px;
}

.woocommerce-cart .product-remove a.remove {
    color: #d93025 !important;
    font-size: 24px !important;
    font-weight: 400 !important;
    width: 30px;
    height: 30px;
    line-height: 28px;
    text-align: center;
    border-radius: 50%;
    background: #fff !important;
    border: 1px solid #eee;
    transition: 0.3s;
}

.woocommerce-cart .product-remove a.remove:hover {
    background: #ffeeee !important;
    color: #d93025 !important;
    border-color: #ffcccc;
}

/* Actions Row (Coupon & Update) */
.woocommerce-cart .actions {
    background: #fdfdfd;
    padding: 20px 25px !important;
    border-top: 1px solid #eee;
}

.woocommerce-cart .coupon {
    display: flex;
    gap: 10px;
    float: left;
}

.woocommerce-cart .coupon input.input-text {
    width: 220px !important;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 12px 15px !important;
    font-size: 14px;
    background: #fff;
}

.woocommerce-cart .coupon input.input-text:focus {
    border-color: #0253A3;
    outline: none;
}

.woocommerce-cart .button {
    background: #fff !important;
    color: #0253A3 !important;
    border: 1px solid #0253A3 !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    padding: 12px 25px !important;
    font-size: 14px !important;
    transition: 0.3s !important;
}

.woocommerce-cart .button:hover {
    background: #0253A3 !important;
    color: #fff !important;
}

.woocommerce-cart .button[name="update_cart"] {
    background: #f4f8fc !important;
    border-color: #e0ebf5 !important;
    float: right;
}

.woocommerce-cart .button[name="update_cart"]:hover {
    background: #0253A3 !important;
    border-color: #0253A3 !important;
}

/* Right Column: Cart Totals */
.woocommerce-cart .cart-collaterals {
    flex: 1 1 30%;
    width: 100%;
    margin-top: 0 !important;
}

.woocommerce-cart .cart_totals {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    width: 100% !important;
}

.woocommerce-cart .cart_totals h2 {
    font-size: 20px;
    color: #1a4267;
    border-bottom: 2px solid #e0ebf5;
    padding-bottom: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.woocommerce-cart .cart_totals table {
    width: 100%;
    border-collapse: collapse;
}

.woocommerce-cart .cart_totals th,
.woocommerce-cart .cart_totals td {
    padding: 15px 0;
    border-bottom: 1px solid #f5f5f5;
}

.woocommerce-cart .cart_totals th {
    font-weight: 600;
    color: #555;
    text-align: left;
}

.woocommerce-cart .cart_totals td {
    text-align: right;
    font-weight: 600;
    color: #111;
}

.woocommerce-cart .cart_totals .order-total th,
.woocommerce-cart .cart_totals .order-total td {
    font-size: 20px;
    border-bottom: none;
    padding-top: 20px;
    color: #d93025;
    /* Highlighting total price */
}

.woocommerce-cart .cart_totals .order-total td strong {
    font-weight: 800;
}

/* Checkout Button */
.woocommerce-cart .wc-proceed-to-checkout {
    padding-top: 25px;
}

.woocommerce-cart .checkout-button {
    display: block;
    width: 100%;
    background: #d93025 !important;
    /* Action red */
    color: #fff !important;
    text-align: center;
    border-radius: 6px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 18px !important;
    transition: background 0.3s !important;
    border: none !important;
}

.woocommerce-cart .checkout-button:hover {
    background: #b3241d !important;
}

/* Responsive adjustments */
@media(max-width: 900px) {
    .woocommerce-cart .woocommerce {
        flex-direction: column;
    }

    .woocommerce-cart .woocommerce-cart-form,
    .woocommerce-cart .cart-collaterals {
        flex: 1 1 100%;
    }

    .woocommerce-cart .coupon {
        float: none;
        flex-direction: column;
        margin-bottom: 15px;
    }

    .woocommerce-cart .coupon input.input-text {
        width: 100% !important;
    }

    .woocommerce-cart .button[name="update_cart"] {
        float: none;
        width: 100%;
    }
}

/* ==========================================================================
   WooCommerce Login / Register Page Styling (Premium Split Layout)
   ========================================================================== */
body:not(.logged-in) .woocommerce-account .woocommerce {
    max-width: 1100px;
    margin: 60px auto;
}
body:not(.logged-in) .woocommerce-account #customer_login {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    overflow: hidden;
    min-height: 650px;
    border: none;
    padding: 0;
}
/* Image on the Left */
body:not(.logged-in) .woocommerce-account #customer_login::before {
    content: "";
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: url('assets/dentist_login_bg.png') center/cover no-repeat;
    background-position: center 20%;
    border-right: 1px solid #f0f0f0;
}
/* Right Side Containers */
body:not(.logged-in) .woocommerce-account #customer_login > .u-column1 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding: 50px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: auto;
    float: none;
}
body:not(.logged-in) .woocommerce-account #customer_login > .u-column2 {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    padding: 0 60px 50px;
    border-left: none;
    background: transparent;
    width: auto;
    float: none;
    position: relative;
}

/* Add an OR divider between Login and Register */
body:not(.logged-in) .woocommerce-account #customer_login > .u-column2::before {
    content: "Or";
    display: block;
    text-align: center;
    color: #999;
    font-size: 13px;
    font-weight: 600;
    margin: 10px 0 25px;
    position: relative;
}
body:not(.logged-in) .woocommerce-account #customer_login > .u-column2::after {
    content: "";
    position: absolute;
    top: 18px;
    left: 60px;
    right: 60px;
    height: 1px;
    background: #eee;
    z-index: 0;
}
body:not(.logged-in) .woocommerce-account #customer_login > .u-column2::before {
    background: #fff;
    padding: 0 15px;
    display: inline-block;
    position: relative;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
}

.woocommerce-account #customer_login h2 {
    font-size: 22px;
    color: #1a4267;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}
.woocommerce-form-row {
    margin-bottom: 15px;
}
.woocommerce-form-row label {
    display: block;
    font-size: 13px;
    color: #555;
    font-weight: 600;
    margin-bottom: 6px;
}
/* Re-show label for checkbox */
.woocommerce-form-login .woocommerce-form__label-for-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    color: #666;
    cursor: pointer;
    font-size: 14px;
    margin-bottom: 0;
}
.woocommerce-form-row input.input-text {
    width: 100%;
    padding: 14px 15px !important;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: 0.3s;
    background: #fff;
}

.woocommerce-form-row input.input-text:focus {
    border-color: #0253A3;
    box-shadow: 0 0 0 3px rgba(2, 83, 163, 0.1);
    outline: none;
}
.woocommerce-form-login .woocommerce-form-login__submit,
.woocommerce-form-register .woocommerce-form-register__submit {
    background: #1a4267 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 30px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    width: 100%;
    margin-top: 10px;
    transition: 0.3s !important;
}
.woocommerce-form-login .woocommerce-form-login__submit:hover,
.woocommerce-form-register .woocommerce-form-register__submit:hover {
    background: #0253A3 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(2, 83, 163, 0.2);
}
.woocommerce-form-login .woocommerce-LostPassword {
    text-align: center;
    margin-top: 15px;
}
.woocommerce-form-login .woocommerce-LostPassword a {
    color: #0253A3;
    font-size: 13px;
    text-decoration: none;
    font-weight: 500;
}
.woocommerce-form-login .woocommerce-LostPassword a:hover {
    text-decoration: underline;
}

@media(max-width: 900px) {
    body:not(.logged-in) .woocommerce-account #customer_login {
        display: flex;
        flex-direction: column;
    }
    body:not(.logged-in) .woocommerce-account #customer_login::before {
        min-height: 250px;
        flex: none;
    }
    body:not(.logged-in) .woocommerce-account #customer_login > .u-column1,
    body:not(.logged-in) .woocommerce-account #customer_login > .u-column2 {
        padding: 30px;
    }
}

/* ==========================================================================
   WooCommerce My Account Dashboard Styling
   ========================================================================== */
.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px auto;
    max-width: 1200px;
}
.woocommerce-account .woocommerce::before,
.woocommerce-account .woocommerce::after {
    display: none !important;
}

/* Fix flex for login form and notices */
.woocommerce-account .woocommerce-notices-wrapper,
.woocommerce-account #customer_login {
    flex: 1 1 100%;
    width: 100%;
}

/* Sidebar Navigation */
.woocommerce-account .woocommerce-MyAccount-navigation {
    flex: 0 0 25%;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 20px 0;
    align-self: flex-start;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f5f5f5;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 15px 25px;
    color: #444;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s;
    border-left: 3px solid transparent;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #f4f8fc;
    color: #0253A3;
    border-left-color: #0253A3;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: #f4f8fc;
    color: #0253A3;
    border-left-color: #0253A3;
    font-weight: 700;
}

/* Main Content Area */
.woocommerce-account .woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #eee;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    padding: 40px;
    min-width: 0; /* Fix flex overflow */
}
.woocommerce-account .woocommerce-MyAccount-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content a {
    color: #0253A3;
    text-decoration: none;
    font-weight: 600;
}
.woocommerce-account .woocommerce-MyAccount-content a:hover {
    text-decoration: underline;
}

/* Notice & Messages */
.woocommerce-account .woocommerce-message,
.woocommerce-account .woocommerce-info,
.woocommerce-account .woocommerce-error {
    background: #f4f8fc;
    border-top: 3px solid #0253A3;
    padding: 15px 20px 15px 50px;
    color: #1a4267;
    margin-bottom: 25px;
    border-radius: 4px;
    font-weight: 500;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
    list-style: none;
    position: relative;
}
.woocommerce-account .woocommerce-message::before,
.woocommerce-account .woocommerce-info::before,
.woocommerce-account .woocommerce-error::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 16px;
    color: inherit;
}
.woocommerce-account .woocommerce-info::before {
    content: "\f05a"; /* info circle */
}
.woocommerce-account .woocommerce-message::before {
    content: "\f058"; /* check circle */
}
.woocommerce-account .woocommerce-error::before {
    content: "\f071"; /* exclamation triangle */
}
.woocommerce-account .woocommerce-error {
    border-top-color: #d93025;
    background: #fdf3f2;
    color: #b3241d;
}
.woocommerce-account .woocommerce-message {
    border-top-color: #2e7d32;
    background: #e8f5e9;
    color: #1b5e20;
}

/* Tables in My Account (Orders, Downloads) */
.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 25px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table th {
    background: #f4f8fc;
    color: #1a4267;
    font-weight: 700;
    padding: 15px;
    text-align: left;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table td {
    padding: 15px;
    border-top: 1px solid #eee;
    color: #444;
    vertical-align: middle;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table .button {
    background: #f4f8fc;
    color: #0253A3;
    padding: 8px 15px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    border: 1px solid #e0ebf5;
    transition: 0.3s;
}
.woocommerce-account .woocommerce-MyAccount-content table.shop_table .button:hover {
    background: #0253A3;
    color: #fff;
    border-color: #0253A3;
}

/* Addresses & Forms */
.woocommerce-account .woocommerce-MyAccount-content header.title h3 {
    font-size: 20px;
    color: #1a4267;
    margin-bottom: 15px;
}
.woocommerce-account .woocommerce-MyAccount-content address {
    font-style: normal;
    color: #555;
    line-height: 1.8;
    background: #fdfdfd;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #eee;
}
.woocommerce-account .woocommerce-MyAccount-content form {
    background: #fdfdfd;
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .button {
    background: #0253A3;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}
.woocommerce-account .woocommerce-MyAccount-content .button:hover {
    background: #013f7c;
}

/* Mobile Responsive */
@media(max-width: 768px) {
    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        flex: 1 1 100%;
        width: 100%;
    }
    .woocommerce-account .woocommerce-MyAccount-content {
        padding: 20px;
    }
}