* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fff;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6,
.section-title, .main-heading, .hero-subheading,
.logo, .footer-tagline, .why-choose-title,
.before-after-title, .blog-heading {
    font-family: 'Outfit', sans-serif;
}

img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    width: 100%;
}

.nav {
    position: relative;
}

.nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-self: start;
}

.nav-left a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s;
}

.nav-left a:hover {
    color: #f6861f;
}

.nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #f6861f;
}

.sunmd-logo-image { 
    width: 100%;
    height: 50px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .sunmd-logo-image {
        width: 100%;
        height: 40px;
        object-fit: contain;
        margin-left: 70%;
    }
}


.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.shop-btn {
    background-color: #f6861f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.shop-btn:hover {
    background-color: #d9720f;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
    z-index: 101;
    position: relative;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 99;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu a {
    padding: 1rem;
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid #e0e0e0;
    transition: color 0.3s;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: #f6861f;
}

.mobile-shop-btn {
    background-color: #f6861f;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    margin-top: 0.5rem;
}

.mobile-shop-btn:hover {
    background-color: #d9720f;
    color: #fff;
}

/* Marquee Section */
.marquee-section {
    background-color: #f6861f;
    color: #fff;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: inline-flex;
    will-change: transform;
    position: relative;
}

.marquee-item {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    /* left padding = gap after dot; no right padding (handled by ::after margin) */
    padding: 0.7rem 0 0.7rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    box-sizing: border-box;
}

.marquee-item::after {
    content: '·';
    /* margin-left matches padding-left → equal gap on both sides of dot */
    margin-left: 2.5rem;
    font-size: 1.4rem;
    line-height: 1;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .marquee-item {
        font-size: 0.78rem;
        padding: 0.6rem 0 0.6rem 2rem;
    }

    .marquee-item::after {
        margin-left: 2rem;
    }
}

/* Custom Images Section */
.hero-banner-link {
    display: contents; /* invisible wrapper — children layout as if the <a> wasn't there */
    cursor: pointer;
}

.custom-images-section img {
    display: block;
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast; /* Safari — sharpens scaled images */
    image-rendering: crisp-edges;               /* Firefox */
    -ms-interpolation-mode: nearest-neighbor;  /* legacy IE */
}

.in-vivo-tested {
    width: 100%;
    max-width: 600px; /* display at half pixel-width → crisp on retina */
    margin: 0 auto;
}

/* Standards Section */
.standards-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.standards-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.standard-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.standard-number {
    font-weight: bold;
    color: #f6861f;
}

.standard-text {
    color: #666;
}

/* Hero Section */
.hero-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(246,134,31,0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #f6861f 0%, #f99a42 100%);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: fit-content;
    box-shadow: 0 2px 8px rgba(246,134,31,0.3);
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    text-align: left;
    margin: 0;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.hero-subheading {
    font-size: 1.2rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-weight: 400;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.feature-icon {
    background-color: #f6861f;
    color: #fff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: bold;
    flex-shrink: 0;
}

.rating-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.star-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rating-count {
    color: #666;
    font-size: 0.95rem;
    font-weight: 400;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.rating-number {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.verified-icon {
    background-color: #f6861f;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.hero-pricing {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 0;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 1.2rem;
}

.current-price {
    color: #f6861f;
    font-size: 2rem;
    font-weight: 700;
}

.discount-badge {
    background-color: #f6861f;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.urgency-text {
    color: #d9720f;
    font-size: 0.9rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-shop-btn {
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 1.1rem 2.5rem;
    min-width: 200px;
}

.primary-cta {
    background-color: #f6861f;
    color: #fff;
    box-shadow: 0 4px 15px rgba(246,134,31,0.3);
}

.primary-cta:hover {
    background-color: #d9720f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246,134,31,0.45);
}

.secondary-cta {
    background-color: #1a1a1a;
    color: #fff;
    border: none;
}

.secondary-cta:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

.guarantee-icon {
    color: #f6861f;
    font-weight: bold;
    font-size: 1.1rem;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.product-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
    transition: transform 0.3s ease;
}

.hero-product-image:hover {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f6861f 0%, #f99a42 100%);
    color: #fff;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(246,134,31,0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Section Styles */
section {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

.section-description {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 2rem auto 0;
    font-style: italic;
}

/* Shopable Videos Section */
.shopable-videos-section {
    background-color: #fff;
}

.videos-circles-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.video-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, #f6861f 0%, #ff0000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.circle-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200"><rect width="200" height="200" fill="%23f0f0f0"/><text x="50%25" y="50%25" text-anchor="middle" dy=".3em" font-family="Arial" font-size="14" fill="%23999">Image</text></svg>');
    background-size: cover;
    background-position: center;
    object-fit: cover;
}

.shopable-videos-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
}

.shopable-videos-description {
    text-align: center;
    color: #666;
    max-width: 800px;
    margin: 1rem auto 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.shopable-videos-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.shopable-video-card {
    position: relative;
    aspect-ratio: 9/16;
    border-radius: 12px;
    overflow: hidden;
    scroll-snap-align: start;
    min-width: 0;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #333;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    pointer-events: none;
}

.video-card-content {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 2;
}

.video-product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #fff;
    padding: 4px;
    flex-shrink: 0;
}

.video-product-title {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Why Choose Section */
.why-choose-section {
    background-color: #f8f9fa;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.why-choose-card {
    flex: 1;
    min-width: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.title-card {
    background-color: #fff;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}

.why-choose-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.why-choose-shop-btn {
    background-color: #f6861f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s;
    display: inline-block;
}

.why-choose-shop-btn:hover {
    background-color: #d9720f;
}

.image-card {
    position: relative;
    aspect-ratio: 4/5;
    min-height: 400px;
    overflow: hidden;
}

.card-background-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
}

.card-image-1 {
    background: linear-gradient(135deg, #f6861f 0%, #f99a42 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="500"><rect width="400" height="500" fill="%23ff6b35"/><text x="50%25" y="50%25" text-anchor="middle" dy=".3em" font-family="Arial" font-size="18" fill="%23fff">Image 1</text></svg>');
}

.card-image-2 {
    background: linear-gradient(135deg, #f99a42 0%, #f6861f 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="500"><rect width="400" height="500" fill="%23ff8c5a"/><text x="50%25" y="50%25" text-anchor="middle" dy=".3em" font-family="Arial" font-size="18" fill="%23fff">Image 2</text></svg>');
}

.card-image-3 {
    background: linear-gradient(135deg, #f6861f 0%, #ff0000 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="400" height="500"><rect width="400" height="500" fill="%23ff0000"/><text x="50%25" y="50%25" text-anchor="middle" dy=".3em" font-family="Arial" font-size="18" fill="%23fff">Image 3</text></svg>');
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: #fff;
}

.card-text {
    font-size: 1rem;
    margin: 0;
    color: #fff;
    opacity: 0.9;
}

/* Shop Products Section */
.shop-products-section {
    background-color: #fff;
}

.products-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 0;
}

.products-section-header .section-title {
    margin-bottom: 3rem;
    text-align: left;
}

.products-arrows {
    display: none; /* shown only on mobile via media query */
    gap: 0.5rem;
    position: absolute;
    right: 0;
    bottom: 1rem;
}

.products-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #f6861f;
    background: #fff;
    color: #f6861f;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    line-height: 1;
}

.products-arrow:hover {
    background: #f6861f;
    color: #fff;
    box-shadow: 0 4px 14px rgba(246, 134, 31, 0.35);
}

.products-carousel {
    max-width: 1200px;
    margin: 0 auto;
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* ── Premium Product Cards ─────────────────────────────── */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

/* Featured / Best-seller card gets a subtle orange ring */
.product-card-featured {
    border: 2px solid #f6861f;
    box-shadow: 0 8px 32px rgba(246,134,31,0.14);
}

.product-card-featured:hover {
    box-shadow: 0 16px 48px rgba(246,134,31,0.22);
}

/* ── Image area ── */
.product-featured-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: linear-gradient(145deg, #f6861f 0%, #f9a040 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.product-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

/* Quantity pill (bottom-left of image) */
.pc-qty-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(255,255,255,0.92);
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

/* Best Seller ribbon (top-right) */
.pc-best-seller-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.38rem 0.9rem;
    border-bottom-left-radius: 12px;
    z-index: 2;
}

/* ── Info area ── */
.product-info {
    padding: 1.25rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex-grow: 1;
}

.product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.35;
}

.product-title span {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: #777;
    margin-top: 0.15rem;
}

/* Stars + count */
.pc-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.pc-stars {
    color: #f6861f;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.pc-rating-count {
    font-size: 0.75rem;
    color: #999;
    font-family: 'Inter', sans-serif;
}

/* Pricing row */
.pc-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.1rem;
}

.pc-price {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: #1a1a1a;
}

.pc-mrp {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    color: #bbb;
    text-decoration: line-through;
}

.pc-discount {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #f6861f;
    background: #fff3e6;
    border: 1px solid #ffd6a8;
    padding: 0.18rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.03em;
}

/* Add to Cart CTA */
.pc-cta {
    margin-top: 0.5rem;
    display: block;
    text-align: center;
    background: #f6861f;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: background 0.25s, transform 0.2s;
}

.pc-cta:hover {
    background: #d9720f;
    transform: translateY(-1px);
}

/* Promotional Banner */
.promo-banner {
  
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.promo-marquee-container {
    padding: 2rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.promo-marquee-content {
    display: inline-flex;
    animation: promo-marquee 20s linear infinite;
    white-space: nowrap;
}

.promo-marquee-content span {
    padding-right: 4rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    display: inline-block;
}

@keyframes promo-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Before After Section */
.before-after-section {
    background-color: #fff;
    padding: 4rem 2rem;
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.before-after-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.before-after-title {
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    line-height: 1.2;
}

.before-after-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.before-after-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
}

/* Sun Protection Section */
.sun-protection-section {
    background-color: #fff;
    text-align: center;
}

.protection-content {
    max-width: 800px;
    margin: 0 auto;
}

.protection-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Customer Reviews Section */
.customer-reviews-section {
    background-color: #f8f9fa;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Desktop: Keep grid layout */
@media (min-width: 1025px) {
    .videos-circles-container,
    .shopable-videos-cards,
    .products-grid,
    .why-choose-container,
    .reviews-container {
        overflow-x: visible;
        scroll-snap-type: none;
    }

    .videos-circles-container {
        flex-wrap: wrap;
    }
}

/* Improve scrollbar appearance across all browsers */
* {
    scrollbar-width: thin;
    scrollbar-color: #f6861f #f1f1f1;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb {
    background: #f6861f;
    border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #d9720f;
}

.review-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    border-left: 4px solid #f6861f;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.star-filled {
    color: #ffc107;
    font-size: 1.5rem;
    letter-spacing: 2px;
    line-height: 1;
}

.star-half {
    color: #ffc107;
    font-size: 1.5rem;
    opacity: 0.5;
    line-height: 1;
}

.star-rating {
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
}

.review-content {
    color: #666;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.review-author {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Footer CTA Section */
.footer-cta-section {
    width: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.footer-cta-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 4rem 2rem 3rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 3rem;
    align-items: flex-start;
}

/* Brand / Newsletter column */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 260px;
    min-width: 0;
}

.footer-tagline {
    font-size: 1.75rem;
    font-weight: 800;
    color: #f6861f;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.footer-newsletter-desc {
    font-size: 0.9rem;
    color: #aaa;
    line-height: 1.6;
    max-width: 360px;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 0.5rem;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #f6861f;
    max-width: 400px;
}

.footer-email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    outline: none;
    background: #2a2a2a;
    color: #fff;
    font-size: 0.9rem;
}

.footer-email-input::placeholder {
    color: #777;
}

.footer-submit-btn {
    padding: 0.75rem 1.4rem;
    background: #f6861f;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.25s;
    white-space: nowrap;
}

.footer-submit-btn:hover {
    background: #d9720f;
}

.footer-social {
    display: flex;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.footer-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #f6861f;
    color: #f6861f;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, color 0.25s;
}

.footer-social-link svg {
    width: 18px;
    height: 18px;
}

.footer-social-link:hover {
    background: #f6861f;
    color: #fff;
}

/* Links columns */
.footer-links {
    flex: 1 1 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    min-width: 0;
}

.footer-col-heading {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #f6861f;
    margin-bottom: 1rem;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links-col a {
    text-decoration: none;
    color: #aaa;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links-col a:hover {
    color: #f6861f;
}

/* Footer bottom bar */
.footer-bottom {
    border-top: 1px solid #2e2e2e;
    padding: 1rem 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: #666;
}

/* Tablet: brand on top, link cols wrap 2×2 */
@media (max-width: 900px) {
    .footer-inner {
        flex-wrap: wrap;
        gap: 2.5rem;
        padding: 3rem 1.5rem 2rem;
    }

    .footer-brand {
        flex: 1 1 100%;
    }

    .footer-links {
        flex: 1 1 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 3rem;
    }
}

/* Mobile: everything stacked, links in 2 cols */
@media (max-width: 600px) {
    .footer-tagline {
        font-size: 1.4rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 8px;
        overflow: visible;
        border: none;
        gap: 0.5rem;
        max-width: 100%;
    }

    .footer-email-input {
        border-radius: 6px;
        border: 1px solid #f6861f;
    }

    .footer-submit-btn {
        border-radius: 6px;
        padding: 0.75rem;
    }

    .footer-links {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem 2rem;
    }
}

/* Small mobile: links in single column */
@media (max-width: 380px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Carousel Styles for Mobile */
.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1.5rem;
}

.carousel-item {
    flex: 0 0 auto;
    min-width: 100%;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.carousel-dot.active {
    background-color: #f6861f;
}

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .section-title {
        font-size: 2.2rem;
    }

    .main-heading {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .product-card-center {
        transform: none;
    }

    .shopable-videos-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Tablet: Show hamburger menu */
    .nav-left,
    .nav-right {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .nav {
        grid-template-columns: auto 1fr auto;
    }
    .why-choose-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .why-choose-card {
        flex: 0 0 45%;
        min-width: 45%;
        scroll-snap-align: start;
    }

    .why-choose-container::-webkit-scrollbar {
        height: 4px;
    }

    .why-choose-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .why-choose-container::-webkit-scrollbar-thumb {
        background: #f6861f;
        border-radius: 10px;
    }

    .title-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .products-section-header {
        padding: 0 1rem;
        justify-content: space-between;
    }

    .products-section-header .section-title {
        margin-bottom: 0;
    }

    .products-arrows {
        display: flex;
        position: static;
    }

    .products-carousel {
        margin-top: 1.25rem;
    }

    .products-grid {
        grid-template-columns: none;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding: 0 1rem 1rem;
    }

    .product-card {
        flex: 0 0 72%;
        min-width: 72%;
        scroll-snap-align: start;
    }

    .product-card-featured {
        border-width: 2px;
    }

    .product-featured-image {
        padding: 1.5rem;
    }

    .product-info {
        padding: 1rem 1.1rem 1.25rem;
        gap: 0.45rem;
    }

    .product-title {
        font-size: 0.92rem;
    }

    .pc-price {
        font-size: 1.15rem;
    }

    .pc-cta {
        font-size: 0.82rem;
        padding: 0.65rem 1rem;
    }

    .products-grid::-webkit-scrollbar {
        height: 4px;
    }

    .products-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .products-grid::-webkit-scrollbar-thumb {
        background: #f6861f;
        border-radius: 10px;
    }

    .shopable-videos-cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .main-heading {
        font-size: 2.8rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    .current-price {
        font-size: 1.8rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-shop-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-right {
        order: -1;
    }

    .hero-left {
        text-align: center;
        align-items: center;
        order: 1;
        gap: 1.25rem;
    }

    .hero-badge {
        align-self: center;
    }

    .main-heading {
        font-size: 2rem;
        text-align: center;
        line-height: 1.2;
    }

    .hero-subheading {
        font-size: 1rem;
        text-align: center;
    }

    .hero-features {
        align-items: center;
        text-align: left;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .rating-section {
        align-items: center;
        text-align: center;
    }

    .star-rating {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-pricing {
        align-items: center;
    }

    .price-info {
        justify-content: center;
    }

    .current-price {
        font-size: 1.75rem;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-shop-btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 2rem;
    }

    .hero-guarantee {
        justify-content: center;
        text-align: center;
    }

    .product-badge {
        top: 10px;
        right: 10px;
        padding: 0.6rem 1.2rem;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .videos-circles-container {
        gap: 2rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 1rem 1rem 1.5rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scroll-padding: 1rem;
    }

    .videos-circles-container::-webkit-scrollbar {
        height: 4px;
    }

    .videos-circles-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .videos-circles-container::-webkit-scrollbar-thumb {
        background: #f6861f;
        border-radius: 10px;
    }

    .video-circle {
        width: 150px;
        height: 150px;
        flex-shrink: 0;
        scroll-snap-align: center;
        scroll-snap-align: center;
    }

    .why-choose-container {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .why-choose-card {
        flex: 0 0 90%;
        min-width: 90%;
        scroll-snap-align: start;
    }

    .reviews-container {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        display: flex;
        gap: 1.5rem;
        padding-bottom: 1rem;
    }

    .review-card {
        flex: 0 0 90%;
        min-width: 90%;
        scroll-snap-align: start;
    }

    .reviews-container::-webkit-scrollbar {
        height: 4px;
    }

    .reviews-container::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .reviews-container::-webkit-scrollbar-thumb {
        background: #f6861f;
        border-radius: 10px;
    }

    .title-card {
        padding: 2rem 1.5rem;
        align-items: center;
        text-align: center;
    }

    .why-choose-title {
        font-size: 2rem;
    }

    .why-choose-shop-btn {
        width: 100%;
        max-width: 300px;
    }

    .image-card {
        min-height: 300px;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .nav {
        grid-template-columns: auto 1fr auto;
        gap: 0;
        position: relative;
    }

    .nav-left,
    .nav-right {
        display: none;
    }

    .nav-center {
        grid-column: 2;
        justify-self: center;
    }

    .hamburger-menu {
        grid-column: 3;
        justify-self: end;
        display: flex;
        justify-self: end;
    }

    .mobile-menu {
        display: flex;
    }

    .standards-container {
        flex-direction: column;
        text-align: center;
    }

    .promo-marquee-content span {
        font-size: 1.5rem;
    }

    .promo-banner {
        background-size: cover;
    }

    .promo-marquee-container {
        padding: 1.5rem 0;
    }

    .before-after-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .before-after-left {
        justify-content: center;
        text-align: center;
    }

    .before-after-title {
        font-size: 2rem;
    }

    .shopable-videos-cards {
        grid-template-columns: none;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
        padding-bottom: 1rem;
    }

    .shopable-video-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: start;
    }

    .shopable-videos-cards::-webkit-scrollbar {
        height: 4px;
    }

    .shopable-videos-cards::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 10px;
    }

    .shopable-videos-cards::-webkit-scrollbar-thumb {
        background: #f6861f;
        border-radius: 10px;
    }

    .video-product-image {
        width: 50px;
        height: 50px;
    }

    .video-product-title {
        font-size: 0.9rem;
    }

    .header {
        padding: 0.75rem 1rem;
    }

    .nav {
        padding: 0;
    }

    .logo {
        font-size: 1.2rem;
    }

    .shop-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .marquee-content span {
        font-size: 0.78rem;
    }

    .hero-section {
        padding: 2rem 1rem;
    }

    .hero-product-image {
        max-width: 80%;
    }

    .before-after-image {
        max-width: 100%;
    }

    .footer-cta-image {
        min-height: 200px;
        object-fit: cover;
    }

    section {
        padding: 2rem 1rem;
    }

    /* Improve touch targets */
    a, button {
        min-height: 35px;
        min-width: 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .section-title {
        font-size: 1.75rem;
    }

    .main-heading {
        font-size: 1.75rem;
    }

    .video-circle {
        width: 120px;
        height: 120px;
        scroll-snap-align: center;
    }

    .shopable-video-card {
        flex: 0 0 92%;
        min-width: 92%;
    }

    .product-card {
        flex: 0 0 92%;
        min-width: 92%;
    }

    .why-choose-card {
        flex: 0 0 92%;
        min-width: 92%;
    }

    .review-card {
        flex: 0 0 92%;
        min-width: 92%;
    }
}




/* CUSTOM CSS FOR SUN MD SUNSCREEN GEL */

img.sun-md-sunscreen-gel,
img.clinically-tested-ingredients,
img.in-vivo-tested,
img.ingredients {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
}

/* Image Slider */

/* Tab strip */
.slider-tabs {
    display: flex;
    width: 100%;
    background: #1a1a1a;
    overflow-x: auto;
    scrollbar-width: none;
}

.slider-tabs::-webkit-scrollbar {
    display: none;
}

.slider-tab {
    flex: 1;
    min-width: 0;
    padding: 0.9rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #888;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
    line-height: 1.35;
}

.slider-tab:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.slider-tab.active {
    color: #f6861f;
    border-bottom-color: #f6861f;
    font-weight: 600;
}

@media (max-width: 768px) {
    .slider-tab {
        font-size: 0.72rem;
        padding: 0.75rem 1rem;
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

.image-slider-section {
    position: relative;
    width: 100%;
    background: #fff;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}

.image-slider-wrapper {
    position: relative;
    width: 100%;
}

.image-slider-viewport {
    overflow: hidden;
    width: 100%;
}

.image-slider-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.image-slider-track .slider-item {
    min-width: 100%;
    position: relative;
}

.image-slider-track .slider-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Banner caption overlay */
.slide-caption {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    padding: 0 4% 0 5%;
    background: linear-gradient(to right, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.18) 70%, transparent 100%);
}

.slide-headline {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 3.6vw, 5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-align: left;
}

@media (max-width: 768px) {
    .slide-caption {
        width: 70%;
        padding: 0 4% 0 4%;
        background: linear-gradient(to right, rgba(0,0,0,0.58) 0%, rgba(0,0,0,0.2) 75%, transparent 100%);
    }

    .slide-headline {
        font-size: clamp(1rem, 5vw, 1.5rem);
    }
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border:none;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgb(254 110 1);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s, border-color 0.25s, box-shadow 0.25s;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    line-height: 1;
}

.slider-arrow-prev {
    left: 1.25rem;
}

.slider-arrow-next {
    right: 1.25rem;
}

.slider-arrow:hover {
    background: rgba(246, 134, 31, 0.85);
    border-color: #f6861f;
    box-shadow: 0 4px 16px rgba(246, 134, 31, 0.4);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0px;
    padding: 0rem;
    background: #fff;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
    padding: 0;
    transform: scale(0.35);
}

.slider-dot.active {
    background: #f6861f;
    transform: scale(0.30);
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 34px;
        height: 34px;
        font-size: 1rem;
        top: 100%;
    }

    .slider-arrow-prev { left: 0.5rem; }
    .slider-arrow-next { right: 0.5rem; }
}


/* Model Images Container */
.model-images-container {
    display: flex;
    justify-content: center;
    align-items: top;
    gap: 10rem;
    padding: 1.25rem 0;
    background-color: none;
    
    text-align: center;
    width: 100%;
}

.model-images-container > div {
    flex: 1;
    max-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    justify-content: space-between;
    
}

.model-images-container > div:last-child {
    border-right: none;
}

.model-images-container img {
    width: 100%;
    height: 150px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}

.model-images-container img.Safe_and_Effective{
    height: 100px;
    margin-top: 15px;
}

.model-images-container p {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #333;
    line-height: 1.3;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0 4.5rem;
    background-color: #ffffff;
}

.blog-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 2rem 2.5rem 2.5rem;
    border: 1px solid #f7dac0;
    background-color: #ffffff;
}

.blog-header {
    margin-bottom: 1.75rem;
}

.blog-heading {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #777777;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
}

.blog-image {
    width: 100%;
    display: block;
    height: auto;
}

.blog-card-content {
    margin-top: 0.75rem;
}

.blog-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #222222;
    margin-bottom: 0.4rem;
}

.blog-read-link {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #f6861f;
    text-decoration: none;
}

.blog-read-link:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .blog-container {
        padding: 1.5rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .model-images-container {
        padding: 0.75rem 0;
        gap: 1rem;
    }

    .model-images-container > div {
        padding: 0.25rem 0.5rem;
        max-width: none;
    }
}

section.custom-images-section {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0 !important;
    margin: 0 !important;
    gap: 0;
}

@media (max-width: 768px) {
    section.custom-images-section {
        gap: 0;
        padding: 0 !important;
    }
}

.sun-md-sunscreen-container {
    width: 100%;
    background: linear-gradient(45deg, #030105, #050306);
    display: flex;
    justify-content: center;
}

/* ── Brand Guidelines ─────────────────────────────────── */

/* Sticky bottom CTA bar */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 2rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.18);
}

.sticky-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 0.03em;
}

.sticky-cta-btn {
    font-family: 'Outfit', sans-serif;
    background-color: #f6861f;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    padding: 0.65rem 1.75rem;
    border-radius: 6px;
    transition: background 0.25s, transform 0.2s;
    white-space: nowrap;
}

.sticky-cta-btn:hover {
    background-color: #d9720f;
    transform: translateY(-1px);
}

/* Push page content above sticky bar */
body {
    padding-bottom: 64px;
}

@media (max-width: 768px) {
    .sticky-cta-bar {
        padding: 0.75rem 1.25rem;
    }

    .sticky-cta-text {
        font-size: 0.78rem;
    }

    .sticky-cta-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.88rem;
    }
}


/* FOOTER */
.sunmd-logo-image-footer{
    object-fit: contain;
    height: 50px;
}

@media (max-width: 768px) {
    .sunmd-logo-image-footer{
        width:100%;
    }
}