/* ============================================
   WEDDING CLUB OFFICIAL - Main Stylesheet
   Premium Print Shop Website
   ============================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    --gold: #B8860B;
    --gold-light: #D4A843;
    --gold-dark: #8B6508;
    --gold-glow: rgba(184, 134, 11, 0.3);
    
    --charcoal: #1a1a2e;
    --charcoal-light: #252540;
    --navy: #16213e;
    --dark-bg: #0f0f23;
    
    --cream: #faf5ef;
    --warm-grey: #f0ece4;
    --light-bg: #f8f6f2;
    --beige: #e8ddd0;
    
    --text-dark: #1a1a2e;
    --text-medium: #4a4a5a;
    --text-light: #7a7a8a;
    --text-white: #ffffff;
    --text-cream: #f0e8d8;
    
    --success: #2ecc71;
    --danger: #e74c3c;
    --warning: #f39c12;
    --info: #3498db;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.25);
    
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Preloader ---- */
#preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--charcoal);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin: 0 auto 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(184,134,11,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    position: relative;
    padding-left: 50px;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--gold);
}

.section-title {
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-medium);
    max-width: 600px;
    line-height: 1.8;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--text-white);
    box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--text-white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--charcoal);
    color: var(--text-white);
}

.btn-dark:hover {
    background: var(--charcoal-light);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--charcoal);
}

.btn-white:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(250, 245, 239, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.main-header.scrolled {
    padding: 8px 0;
    background: rgba(250, 245, 239, 0.95);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 55px;
    width: auto;
    transition: var(--transition);
}

.main-header.scrolled .nav-logo img {
    height: 45px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-icon {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-dark);
    padding: 8px;
}

.cart-icon:hover {
    color: var(--gold);
}

.cart-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--gold);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-cta {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    display: block;
}

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

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

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

.mobile-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.92) 0%, rgba(26,26,46,0.7) 50%, rgba(26,26,46,0.85) 100%);
    z-index: 2;
}

.hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 3;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 15s infinite linear;
}

@keyframes float-particle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 700px;
    padding: 60px 0;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(184, 134, 11, 0.15);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 24px;
}

.hero-label i {
    font-size: 0.7rem;
}

.hero h1 {
    color: var(--text-white);
    margin-bottom: 24px;
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.15;
}

.hero h1 span {
    color: var(--gold-light);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-cream);
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats-float {
    position: absolute;
    right: 80px;
    bottom: 80px;
    z-index: 4;
    display: flex;
    gap: 20px;
}

.hero-stat-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    min-width: 130px;
}

.hero-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-light);
    display: block;
}

.hero-stat-card .stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* Decorative elements */
.hero-decor {
    position: absolute;
    z-index: 3;
    opacity: 0.06;
}

.hero-decor-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: rotate-slow 30s linear infinite;
}

.hero-decor-2 {
    bottom: 15%;
    left: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--gold);
    transform: rotate(45deg);
    animation: rotate-slow 25s linear infinite reverse;
}

@keyframes rotate-slow {
    to { transform: rotate(360deg); }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--gold-glow), transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 40px;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 400;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--cream);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

/* Alternating service blocks (like reference) */
.service-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-block:last-child {
    margin-bottom: 0;
}

.service-block.reverse {
    direction: rtl;
}

.service-block.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition-slow);
}

.service-image:hover img {
    transform: scale(1.05);
}

.service-image-decor {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 15px;
    left: 15px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
    opacity: 0.3;
}

.service-content h3 {
    margin-bottom: 16px;
    font-size: 1.8rem;
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

/* Service Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, rgba(184,134,11,0.1), rgba(184,134,11,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--gold);
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

.service-card h4 {
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    padding: 100px 0;
    background: var(--warm-grey);
    position: relative;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step-number {
    width: 70px; height: 70px;
    background: white;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.process-step:hover .process-step-number {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
    box-shadow: var(--shadow-gold);
}

.process-step h4 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    padding: 0 10px;
}

.process-step-icon {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 12px;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.products-section {
    padding: 100px 0;
    background: var(--cream);
}

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

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 10px 24px;
    background: white;
    border: 1px solid var(--beige);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-medium);
}

.category-tab:hover,
.category-tab.active {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* Product Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--light-bg);
}

.product-card-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-badge.sale {
    background: var(--danger);
    color: white;
}

.product-badge.featured {
    background: var(--gold);
    color: white;
}

.product-card-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
    display: flex;
    gap: 8px;
    justify-content: center;
    transform: translateY(100%);
    transition: var(--transition);
}

.product-card:hover .product-card-overlay {
    transform: translateY(0);
}

.product-card-overlay .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
}

.product-card-body {
    padding: 20px;
}

.product-card-category {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.product-card-title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: var(--font-heading);
    line-height: 1.4;
}

.product-card-title a:hover {
    color: var(--gold);
}

.product-card-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price .current {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--font-heading);
}

.product-price .original {
    font-size: 0.9rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-price .discount {
    font-size: 0.75rem;
    background: rgba(231,76,60,0.1);
    color: var(--danger);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ============================================
   PRODUCT DETAIL PAGE
   ============================================ */
.product-detail-section {
    padding: 120px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-main-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--light-bg);
    margin-bottom: 16px;
}

.product-main-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.product-info .product-category-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-info .price-block {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--beige);
}

.price-block .current-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: var(--font-heading);
}

.price-block .old-price {
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-info .description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 30px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.quantity-selector label {
    font-weight: 600;
    font-size: 0.9rem;
}

.quantity-input {
    display: flex;
    align-items: center;
    border: 2px solid var(--beige);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-input button {
    width: 40px; height: 40px;
    background: var(--light-bg);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.quantity-input button:hover {
    background: var(--gold);
    color: white;
}

.quantity-input input {
    width: 60px; height: 40px;
    text-align: center;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    font-family: var(--font-body);
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.product-meta {
    padding: 20px 0;
    border-top: 1px solid var(--beige);
}

.product-meta p {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.product-meta span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(184,134,11,0.08), transparent 70%);
    top: -20%;
    left: -10%;
    border-radius: 50%;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-header .section-title {
    color: white;
}

.testimonials-header .section-subtitle {
    color: rgba(255,255,255,0.6);
    margin: 0 auto;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
}

.testimonial-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 24px;
    opacity: 0.5;
}

.testimonial-text {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.9;
    font-style: italic;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.testimonial-avatar {
    width: 60px; height: 60px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    background: var(--charcoal-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
}

.testimonial-name {
    font-weight: 600;
    color: white;
    font-size: 1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--gold-light);
}

.testimonial-stars {
    color: var(--gold);
    margin-bottom: 4px;
}

/* Slider controls */
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
}

.slider-btn {
    width: 45px; height: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.slider-btn:hover {
    border-color: var(--gold);
    background: var(--gold);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--gold);
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'%3E%3Ccircle cx='100' cy='100' r='80' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='60' fill='none' stroke='rgba(255,255,255,0.08)' stroke-width='1'/%3E%3Ccircle cx='100' cy='100' r='40' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.cta-text h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.cta-text p {
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio-section {
    padding: 100px 0;
    background: var(--warm-grey);
}

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

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

.portfolio-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3/4;
    cursor: pointer;
}

.portfolio-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(26,26,46,0.9));
    transform: translateY(30px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.portfolio-overlay p {
    color: var(--gold-light);
    font-size: 0.85rem;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
    padding: 160px 0 80px;
    background: var(--charcoal);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse at center, rgba(184,134,11,0.08) 0%, transparent 70%);
}

.page-hero h1 {
    color: white;
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
}

.page-hero .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.page-hero .breadcrumb a {
    color: var(--gold-light);
    font-size: 0.9rem;
}

.page-hero .breadcrumb span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.page-hero .page-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    margin-top: 8px;
    position: relative;
    z-index: 2;
}

/* ============================================
   ABOUT PAGE SPECIFICS
   ============================================ */
.about-intro {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--gold);
    color: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
}

.about-image-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

/* Why Choose Us Cards */
.why-us-section {
    padding: 80px 0;
    background: var(--warm-grey);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-us-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid transparent;
}

.why-us-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-us-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.why-us-card h4 {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.why-us-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.contact-info-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.contact-info-card h4 {
    margin-bottom: 8px;
}

.contact-info-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: white;
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--beige);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--light-bg);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    background: white;
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

textarea.form-control {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 400px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 400px;
}

/* ============================================
   CART & CHECKOUT
   ============================================ */
.cart-section {
    padding: 120px 0 80px;
}

.cart-table {
    width: 100%;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.cart-table thead {
    background: var(--charcoal);
    color: white;
}

.cart-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--beige);
    vertical-align: middle;
}

.cart-product-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product-info img {
    width: 60px; height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.cart-product-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.cart-remove {
    color: var(--danger);
    cursor: pointer;
    border: none;
    background: none;
    font-size: 1.1rem;
    padding: 4px;
}

.cart-summary {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

.coupon-form {
    display: flex;
    gap: 10px;
    align-items: start;
}

.coupon-form input {
    flex: 1;
}

.cart-totals {
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.cart-totals h3 {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--beige);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}

.cart-total-row.total {
    border-top: 2px solid var(--charcoal);
    margin-top: 10px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 1.2rem;
}

.cart-total-row.total .amount {
    color: var(--gold-dark);
    font-family: var(--font-heading);
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart i {
    font-size: 4rem;
    color: var(--beige);
    margin-bottom: 20px;
}

.empty-cart h3 {
    margin-bottom: 12px;
}

.empty-cart p {
    color: var(--text-light);
    margin-bottom: 24px;
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    padding: 80px 0;
    background: var(--cream);
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: white;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.faq-item.active {
    box-shadow: var(--shadow-md);
    border-color: var(--gold);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--charcoal);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 0.8fr 1.2fr;
    gap: 40px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

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

.footer-heading {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 30px; height: 2px;
    background: var(--gold);
}

.footer-address p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address i {
    color: var(--gold);
    margin-top: 4px;
    width: 16px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-newsletter-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    background: rgba(255,255,255,0.08);
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.4);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gold);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--gold-dark);
}

.footer-bottom {
    margin-top: 60px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

/* ============================================
   BACK TO TOP & WHATSAPP FLOAT
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px; height: 45px;
    background: var(--charcoal);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 55px; height: 55px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* ============================================
   ALERTS & MESSAGES
   ============================================ */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert-success {
    background: rgba(46,204,113,0.1);
    color: #1a8a4a;
    border: 1px solid rgba(46,204,113,0.2);
}

.alert-error {
    background: rgba(231,76,60,0.1);
    color: #c0392b;
    border: 1px solid rgba(231,76,60,0.2);
}

.alert-warning {
    background: rgba(243,156,18,0.1);
    color: #b37400;
    border: 1px solid rgba(243,156,18,0.2);
}

/* ============================================
   ORDER SUCCESS
   ============================================ */
.success-section {
    padding: 120px 0 80px;
    text-align: center;
}

.success-icon {
    width: 100px; height: 100px;
    background: rgba(46,204,113,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 3rem;
    color: var(--success);
}

.order-details-card {
    max-width: 600px;
    margin: 30px auto;
    background: white;
    border-radius: var(--radius-md);
    padding: 30px;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--beige);
    font-size: 0.95rem;
}

.order-detail-row:last-child {
    border-bottom: none;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 40px;
}

.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.pagination a {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--beige);
}

.pagination a:hover,
.pagination span.current {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.lightbox-close {
    position: absolute;
    top: 20px; right: 20px;
    width: 45px; height: 45px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: var(--gold);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .hero-stats-float {
        position: relative;
        right: auto;
        bottom: auto;
        justify-content: flex-start;
        margin-top: 40px;
    }
    
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stat-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Navigation */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 4px;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-link {
        padding: 12px 16px;
        width: 100%;
        border-radius: var(--radius-sm);
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(184,134,11,0.1);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Layouts */
    .service-block,
    .about-grid,
    .contact-form-section,
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-block.reverse {
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-summary {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats-float {
        flex-wrap: wrap;
    }
    
    .product-gallery {
        position: relative;
        top: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stat-card {
        min-width: 110px;
        padding: 16px;
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 8px;
    }
    
    .category-tab {
        white-space: nowrap;
    }
    
    .product-card-image {
        height: 220px;
    }
}

/* ---- Utility Classes ---- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* Placeholder image styling */
.placeholder-img {
    background: linear-gradient(135deg, var(--beige), var(--warm-grey));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
}

/* ---- Categories Home Grid (Added) ---- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 24px;
}
.category-card {
    transition: var(--transition);
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ---- WhatsApp Screen Reviews Grid ---- */
.whatsapp-reviews-grid::-webkit-scrollbar {
    height: 6px;
}
.whatsapp-reviews-grid::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 3px;
}
.whatsapp-reviews-grid::-webkit-scrollbar-track {
    background: rgba(0,0,0,0.05);
}
.whatsapp-review-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

/* ---- Purple Testimonials Grid ---- */
.testimonial-purple-card {
    transition: var(--transition);
}
.testimonial-purple-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(123, 31, 162, 0.1);
}

/* ---- Responsive WhatsApp Reviews ---- */
@media (max-width: 768px) {
    .whatsapp-reviews-grid {
        gap: 15px;
    }
    .whatsapp-review-card {
        flex: 0 0 220px;
    }
    .whatsapp-review-card img {
        height: 380px;
    }
}

/* ---- Responsive Brand Logo Text ---- */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1rem !important;
    }
}
