/* ============================================
   SILENTHOUGHT THEME - COMPLETE STYLES
   All styles in one file for simplicity
   
   Color Palette:
   --red:    #eb1f3a
   --black:  #000000
   --blue:   #77acf4
   --white:  #ffffff
   ============================================ */

   :root {
    --color-red: #eb1f3a;
    --color-red-dark: #c91a31;
    --color-black: #000000;
    --color-blue: #77acf4;
    --color-blue-dark: #5a94e0;
    --color-white: #ffffff;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-600: #525252;
    --font-display: 'Poppins', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-xl: 0 16px 48px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

/* ========== GLOBAL RESET ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible,
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   HEADER SECTION
   ============================================ */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--color-black);
    transition: all 0.3s ease;
    height: 60px;
    margin: 0;
    padding: 0;
}

.site-header.scrolled {
    background: rgba(7, 7, 7, 0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* WordPress Admin Bar Adjustment */
body.admin-bar .site-header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    margin: 0;
    padding: 0;
    gap: 24px;
}

.site-header .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* ========== LOGO ========== */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    height: auto;
    line-height: 1;
}

.site-logo__image {
    height: 32px;
    width: auto;
}

.logo-placeholder {
    width: 32px;
    height: 32px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-red);
    flex-shrink: 0;
}

.logo-placeholder svg {
    width: 16px;
    height: 16px;
}

.site-logo__text {
    line-height: 1;
}

/* ========== HEADER ACTIONS ========== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-right: -10px;
    padding-left: 20px;
}

.header-action-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    line-height: 1;
}

.header-action-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-white);
    transform: translateY(-1px);
}

.header-action-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.header-action-text {
    font-size: 0.85rem;
    white-space: nowrap;
}

/* Cart */
.header-cart-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.header-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-red);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px 4px;
    box-shadow: 0 2px 8px rgba(235, 31, 58, 0.4);
    line-height: 1;
}

/* User Avatar */
.header-user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
    line-height: 1;
}

/* User Icon (Not Logged In) */
.header-user-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.header-user-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-white);
    transform: scale(1.05);
}

/* Old class name support */
.btn-user-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-user-icon:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: var(--color-white);
    transform: scale(1.05);
}

.btn-user-icon svg {
    width: 18px;
    height: 18px;
}

/* Login Button */
.btn-login {
    display: inline-flex;
    align-items: center;
    padding: 8px 24px;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-full);
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
    line-height: 1;
}

.btn-login:hover {
    background: var(--color-white);
    color: var(--color-red);
    transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    position: relative;
    z-index: 1001;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-white);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

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

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

/* ============================================
   MOBILE NAV DROPDOWN
   ============================================ */

.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--color-black);
    z-index: 999;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.mobile-nav.is-open {
    display: block;
}

body.admin-bar .mobile-nav {
    top: 92px;
}

@media screen and (max-width: 782px) {
    body.admin-bar .mobile-nav {
        top: 106px;
    }
}

.mobile-nav-inner {
    padding: 12px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    transition: background 0.2s ease;
}

.mobile-nav-item:hover {
    background: rgba(255, 255, 255, 0.14);
    color: var(--color-white);
}

.mobile-nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-nav-login {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--color-white);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    background: var(--color-red);
    border: none;
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.2s ease;
}

.mobile-nav-login:hover {
    background: var(--color-red-dark);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    background: var(--color-red);
    background-image: url('../images/Silenthought-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0;
    padding: 160px 0 100px; /* 100px content + 60px header height */
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

/* Admin Bar Adjustment — add admin bar height on top of base padding */
body.admin-bar .hero-section {
    padding-top: 192px; /* 100px content + 60px header + 32px admin bar */
}

@media screen and (max-width: 782px) {
    body.admin-bar .hero-section {
        padding-top: 206px; /* 100px content + 60px header + 46px admin bar */
    }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    background: var(--color-white);
}

.hero-circle--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.hero-circle--2 {
    width: 250px;
    height: 250px;
    bottom: 50px;
    left: -80px;
}

.hero-circle--3 {
    width: 150px;
    height: 150px;
    top: 40%;
    right: 20%;
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 200%;
    height: 120px;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-wave--1 {
    opacity: 0.15;
    bottom: 40px;
    animation: waveMove 25s linear infinite;
}

.hero-wave--2 {
    opacity: 0.1;
    bottom: 20px;
    animation: waveMove 18s linear infinite reverse;
}

.hero-wave--3 {
    bottom: -2px;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: clamp(0.75rem, 4vw, 3.4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    margin-bottom: 12px;
    font-style: italic;
    animation: fadeInUp 0.8s ease forwards;
    white-space: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-cta--canva {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn-cta--canva:hover {
    background: var(--color-gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-cta--upload {
    background: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-white);
}

.btn-cta--upload:hover {
    background: var(--color-gray-100);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-cta--upload svg {
    width: 18px;
    height: 18px;
}

.canva-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(235,31,58,0.08);
    color: var(--color-red);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--color-black);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    max-width: 500px;
    margin: 0 auto;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */

.products-section {
    padding: 60px 0;
    background: var(--color-white);
}

.products-section .container {
    position: relative;
}

.products-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 0 40px 0;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

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

.products-grid::-webkit-scrollbar-track {
    background: transparent;
}

.products-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 999px;
}

.products-grid .product-card:first-child {
    margin-left: 20px;
}

.products-grid .product-card:last-child {
    margin-right: 20px;
}

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    min-width: 260px;
    max-width: 320px;
    flex: 0 0 auto;
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--color-red);
}

.product-card__image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--color-gray-100);
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-gray-100), var(--color-gray-50));
    color: var(--color-gray-300);
    gap: 10px;
}

.product-placeholder svg {
    width: 56px;
    height: 56px;
    opacity: 0.5;
}

.product-placeholder span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge-sale {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--color-red);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(235, 31, 58, 0.3);
}

.product-card__body {
    padding: 20px 24px 24px;
    text-align: center;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-blue);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.product-card:hover .product-card__name {
    color: var(--color-red);
}

.product-card__desc {
    font-size: 0.9rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

.product-card__price {
    margin-top: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-red);
}

.product-card__price del {
    color: var(--color-gray-600);
    font-size: 0.9rem;
    margin-right: 8px;
}

.product-card__price ins {
    text-decoration: none;
    color: var(--color-red);
}

.product-card__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(5px);
    transition: all 0.3s ease;
}

.product-card:hover .product-card__arrow {
    opacity: 1;
    transform: translateY(0);
}

.product-card__arrow svg {
    width: 16px;
    height: 16px;
}

/* Product Scroll Arrows */
.products-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.products-arrow:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.products-arrow--left {
    left: 20px;
}

.products-arrow--right {
    right: 20px;
}

.products-arrow svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   REVIEWS SECTION
   ============================================ */

.reviews-section {
    padding: 70px 0 80px;
    background: var(--color-gray-50);
    position: relative;
}

.reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue), var(--color-red));
}

.reviews-header {
    margin-bottom: 40px;
}

.reviews-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
    margin-bottom: 6px;
}

.reviews-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-black);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-200);
    transition: all 0.3s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: Georgia, serif;
    font-size: 3rem;
    color: var(--color-red);
    opacity: 0.1;
    line-height: 1;
}

.review-card__stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.review-card__stars svg {
    width: 18px;
    height: 18px;
    fill: #f59e0b;
    color: #f59e0b;
}

.review-card__text {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.65;
    margin-bottom: 18px;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-red);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
}

.review-card__name {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-black);
}

.review-card__date {
    font-size: 0.8rem;
    color: var(--color-gray-300);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: all 0.3s ease;
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: var(--color-black);
    color: var(--color-white);
    padding: 40px 0 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-info {
    flex: 1;
    min-width: 280px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-reg {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 14px;
}

.footer-address {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

.footer-address a {
    color: rgba(255,255,255,0.7);
}

.footer-address a:hover {
    color: var(--color-white);
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-social__label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.6);
}

.footer-social__links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-white);
}

.social-link--fb {
    background: #1877f2;
}

.social-link--ig {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-link--tt {
    background: var(--color-black);
    border: 2px solid rgba(255,255,255,0.2);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 4px 15px rgba(255,255,255,0.2);
}

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

.footer-bottom {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 992px) and (min-width: 769px) {
    .header-action-text {
        font-size: 0.8rem;
    }
    
    .header-action-item {
        padding: 6px 10px;
    }
    
    .site-logo {
        font-size: 1.1rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.333% - 14px);
        max-width: none;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    /* Header */
    .site-header {
        height: 60px;
    }

    .header-inner {
        height: 60px;
        padding: 0;
        gap: 12px;
    }
    
    .site-logo {
        font-size: 1rem;
    }
    
    .logo-placeholder {
        width: 28px;
        height: 28px;
    }
    
    .logo-placeholder svg {
        width: 14px;
        height: 14px;
    }
    
    /* Hide all header action items on mobile — they live inside the hamburger menu */
    .header-action-item,
    .header-action-text,
    .btn-login {
        display: none;
    }

    .header-actions {
        gap: 8px;
    }

    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Hero */
    .hero-section {
        margin: 0;
        padding: 140px 0 80px; /* 80px content + 60px header height */
        min-height: auto;
    }
    
    .hero-tagline {
        font-size: clamp(0.75rem, 4vw, 2.2rem);
    }

    .hero-ctas {
        flex-direction: column;
        gap: 14px;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    /* Products */
    .products-arrow {
        display: none;
    }
    
    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-inner {
        flex-direction: column;
    }
    
    .footer-social {
        align-items: flex-start;
    }
}

/* ============================================
   RESPONSIVE - EXTRA SMALL
   ============================================ */

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .site-logo {
        font-size: 0.9rem;
    }
    
    .logo-placeholder {
        width: 26px;
        height: 26px;
    }
    
    .logo-placeholder svg {
        width: 12px;
        height: 12px;
    }
    
    .header-action-item {
        padding: 4px;
        min-width: 32px;
    }
    
    .header-action-icon {
        width: 16px;
        height: 16px;
    }
    
    .header-actions {
        gap: 6px;
    }
    
    .header-cart-count {
        font-size: 0.65rem;
        min-width: 16px;
        height: 16px;
        top: -6px;
        right: -6px;
    }
    
    .hero-tagline {
        font-size: clamp(0.7rem, 4vw, 1.5rem);
    }

    .section-title {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
    }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */

.lang-switcher {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    padding: 4px 8px;
    flex-shrink: 0;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 0.78rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 4px;
    transition: color 0.2s ease, background 0.2s ease;
    line-height: 1;
    letter-spacing: 0.03em;
}

.lang-btn:hover {
    color: var(--color-white);
}

.lang-btn.lang-btn--active {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.2);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.7rem;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

/* Suppress Google Translate toolbar and the wrapper div it injects into <body>.
   Hiding only the inner iframe leaves the container div with residual height,
   which creates the white gap between header and hero — hide the whole thing. */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
    display: none !important;
}

body > .skiptranslate {
    display: none !important;
    height: 0 !important;
    overflow: hidden !important;
}

/* Google Translate adds style="top: 40px" inline on <body> to make room for
   its toolbar. Since we hide the toolbar, force that offset back to zero. */
body.translated-ltr,
body.translated-rtl {
    top: 0 !important;
    margin-top: 0 !important;
}

/* Belt-and-suspenders: catch the inline style regardless of body class */
body[style*="top: 40"],
body[style*="top:40"] {
    top: 0 !important;
}

/* ============================================
   GOOGLE TRANSLATE LAYOUT COMPATIBILITY
   ============================================ */

/* Google Translate injects <font> tags that override font size/family.
   Force all such injected tags to inherit from their parent. */
body font,
.btn-cta font,
.header-action-item font,
.hero-tagline font,
.hero-subtitle font,
.btn-login font,
.product-card__name font {
    font-size: inherit !important;
    font-family: inherit !important;
    line-height: inherit !important;
    vertical-align: baseline !important;
    display: inline !important;
}

/* Hero CTA buttons — allow text to wrap so translated text fits */
.btn-cta {
    white-space: normal;
    word-break: break-word;
    text-align: center;
    min-height: 52px;
}

/* Login button stays on one line */
.btn-login {
    white-space: nowrap;
    flex-shrink: 0;
}

/* Header action label text — clamp so translated labels can't break the header */
.header-action-text {
    max-width: 110px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Header actions row — allow it to shrink so it won't overflow the nav bar */
.header-actions {
    flex-shrink: 1;
    min-width: 0;
    overflow: visible;
}

/* Hero subtitle */
.hero-subtitle {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Product card names — clamp at 2 lines so cards stay same height */
.product-card__name {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Review card text — prevent overflow */
.review-card__text {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Footer brand — always English, no overflow */
.footer-brand {
    white-space: nowrap;
}

/* Lang switcher buttons should never be translated */
.lang-switcher {
    flex-shrink: 0;
}

/* ============================================
   PARTNERS SECTION
   ============================================ */

.partners-section {
    padding: 60px 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-red), var(--color-blue), var(--color-red));
}

.partners-header {
    margin-bottom: 36px;
    text-align: center;
}

.partners-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-black);
}

/* Marquee container — clips the scrolling track and fades the edges */
.partners-marquee {
    overflow: hidden;
    position: relative;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-white), transparent);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-white), transparent);
}

/* Track is duplicated in HTML — animating by -50% = one full set */
.partners-track {
    display: flex;
    align-items: center;
    gap: 48px;
    width: max-content;
    animation: partners-scroll 40s linear infinite;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes partners-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.partner-logo {
    flex-shrink: 0;
    width: 140px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partners-section {
        padding: 40px 0;
    }

    .partner-logo {
        width: 100px;
        height: 50px;
    }
}