@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

/* UI/UX Pro Max - Premium Hybrid Style */
:root {
    /* Premium Monochrome Palette */
    --primary-color: #0a0a0a;     /* Deep Obsidian */
    --secondary-color: #242424;   /* Charcoal */
    --accent-color: #bfa75d;      /* Premium Muted Gold */
    --text-main: #1a1a1a;
    --text-muted: #666666;
    --bg-main: #fcfcfc;           /* Cleaner, brighter background */
    --surface-color: #ffffff;
    --border-color: #e5e5e5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Bento Settings */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.08);
    
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-main);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.2;
}

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

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

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}
.fade-in-delay-1 { animation-delay: 0.1s; }
.fade-in-delay-2 { animation-delay: 0.2s; }

.container {
    width: 92%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}
.btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}
.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
}
.btn-secondary:hover {
    color: #fff;
}

/* Header */
header {
    padding: 20px 0;
    margin-bottom: 20px;
}
.header-bento {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
}
.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}
.logo img {
    height: 40px;
    width: 40px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}
.logo h1 {
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}
nav ul li a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}
nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}
.social-icons {
    display: flex;
    gap: 15px;
}
.social-icons a {
    color: var(--text-muted);
}
.social-icons a:hover {
    color: var(--primary-color);
}

/* Base Bento Block for Products/Cart/Checkout */
.bento-block {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    padding: 30px;
    overflow: hidden;
    transition: var(--transition);
}
.bento-block:hover {
    box-shadow: var(--shadow-hover);
}

.bento-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.bento-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

/* ========================================================= */
/* INDEX PAGE - LUXURY LIQUID GLASS LAYOUT                   */
/* ========================================================= */

.luxury-header {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.luxury-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.luxury-header h1, .luxury-header nav ul li a, .luxury-header .social-icons a {
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.luxury-header nav ul li a:hover {
    color: var(--accent-color);
}

.luxury-hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}
.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}
.liquid-glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    padding: 60px;
    z-index: 2;
}
.hero-glass-content {
    max-width: 800px;
    text-align: center;
    color: #fff;
}
.hero-glass-content h2 {
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 20px;
}
.hero-glass-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}
.btn-luxury {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 40px;
    border-radius: 0; /* Sharp for luxury */
}

.luxury-section {
    padding: 120px 0;
}
.luxury-section-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}
.luxury-section-header span {
    font-family: var(--font-body);
    color: var(--accent-color);
    font-weight: 300;
    font-size: 2rem;
}
.luxury-section-header h2 {
    font-size: 3rem;
    font-weight: 400;
    margin: 0;
}
.luxury-line {
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 600px;
    gap: 30px;
}
.luxury-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.luxury-item.large-item {
    grid-column: span 2;
}
.luxury-img-wrapper {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.luxury-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}
.luxury-item:hover .luxury-img-wrapper img {
    transform: scale(1.03);
}
.liquid-glass-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.liquid-glass-overlay h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0;
}
.luxury-link {
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.artistry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.artistry-image img {
    width: 100%;
    border-radius: 12px;
    height: 700px;
    object-fit: cover;
}
.artistry-content {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
}
.artistry-content .highlight-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.3;
}
.luxury-features {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lux-feature {
    display: flex;
    gap: 20px;
    align-items: baseline;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
}
.lux-num {
    color: var(--accent-color);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}
.lux-desc {
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.bespoke-card {
    background: var(--surface-color);
    border-color: var(--border-color);
}
.bespoke-intro {
    text-align: center;
    margin-bottom: 50px;
}
.bespoke-intro h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}
.luxury-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid var(--primary-color) !important;
    border-radius: 0 !important;
    padding: 15px 0 !important;
}

.luxury-footer {
    background: var(--primary-color);
    color: #fff;
    padding: 100px 0 50px;
    text-align: center;
}
.luxury-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}
.footer-brand h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.footer-brand p {
    color: var(--accent-color);
    font-style: italic;
    font-family: var(--font-heading);
}
.luxury-footer .footer-links a {
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
}

/* ========================================================= */
/* INTERNAL PAGES (BENTO BLOCKS)                             */
/* ========================================================= */

/* Products Page */
.product-block {
    padding: 0;
    display: flex;
    flex-direction: column;
}
.product-block .product-img-wrapper {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}
.product-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    transition: transform 0.6s ease;
}
.product-block:hover img {
    transform: scale(1.05);
}
.product-block-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-block-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}
.product-block-info .price {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 15px;
}
.product-block-info .description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}
.product-block-info .btn {
    width: 100%;
    padding: 10px;
}

/* Detail & Cart & Forms */
.section-header-block {
    padding: 20px 30px;
    margin-bottom: 20px;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.detail-image-block {
    padding: 0;
    aspect-ratio: 1;
}
.detail-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}
.detail-info-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.detail-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.detail-info-block .design-no {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}
.detail-info-block .price {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
}
.detail-info-block .description {
    color: var(--text-muted);
    margin-bottom: 30px;
}
.quantity-control {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}
.quantity-control input {
    width: 80px;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    text-align: center;
}

.cart-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}
.cart-items-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.cart-item-bento {
    display: flex;
    gap: 20px;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.cart-item-bento:last-child {
    border-bottom: none;
}
.cart-item-bento img {
    width: 120px;
    height: 120px;
    object-fit: cover;
}
.cart-item-details {
    flex: 1;
}
.cart-summary-block {
    position: sticky;
    top: 20px;
}
.cart-summary-block p {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-muted);
}
.cart-summary-block p:last-of-type {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group.full-width {
    grid-column: 1 / -1;
}
.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--surface-color);
}
.custom-message {
    text-align: center;
    margin-top: 15px;
    font-weight: 500;
    color: var(--primary-color);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    margin-top: 40px;
}
.footer-bento {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bento p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links {
    display: flex;
    gap: 20px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-fluid, .about-fluid-grid {
        flex-direction: column;
        text-align: center;
    }
    .hero-fluid-content h2 {
        font-size: 3rem;
    }
    .collage-grid-fluid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-grid-3, .bento-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .cart-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .header-bento {
        flex-direction: column;
        gap: 15px;
    }
    .features-fluid-grid, .bento-grid-3, .bento-grid-4, .product-detail-grid, .form-grid {
        grid-template-columns: 1fr;
    }
    .collage-grid-fluid {
        grid-template-columns: 1fr;
    }
    .collage-item-fluid.large {
        grid-column: span 1;
    }
    .footer-bento {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}/* ========================================================= */
/* CLASSIC LIGHT THEME                                       */
/* ========================================================= */

.bg-cream {
    background-color: #faf9f6;
}

/* Classic Header */
.classic-header {
    background: #fff;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.classic-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.classic-header .logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.classic-header .logo img {
    height: 40px;
    border-radius: 50%;
}
.classic-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #222;
    margin: 0;
}
.classic-header nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.classic-header nav a {
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}
.classic-header nav a:hover, .classic-header nav a.active {
    color: #bfa15f;
}
.classic-header .social-icons a {
    color: #444;
    font-size: 1.2rem;
    margin-left: 1rem;
    transition: color 0.3s ease;
}
.classic-header .social-icons a:hover {
    color: #bfa15f;
}

/* Classic Hero */
.classic-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    padding: 5rem 20px;
}
.classic-hero-text .hero-tag {
    display: block;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #bfa15f;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.classic-hero-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    color: #222;
    margin-bottom: 1.5rem;
}
.classic-hero-text p {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.classic-hero-image img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.btn-classic {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #222;
    color: #fff;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid #222;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.btn-classic:hover {
    background: #fff;
    color: #222;
}

.btn-outline-classic {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #222;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    border: 1px solid #222;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.btn-outline-classic:hover {
    background: #222;
    color: #fff;
}
.btn-outline-classic.small {
    padding: 0.5rem 1.25rem;
    font-size: 0.8rem;
}

/* Sections */
.classic-section {
    padding: 5rem 0;
}
.classic-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}
.feature-card h3 {
    font-family: 'Playfair Display', serif;
    color: #222;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
.feature-card p {
    color: #666;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
}
.classic-section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.classic-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.title-underline-classic {
    width: 60px;
    height: 2px;
    background: #bfa15f;
    margin: 0 auto;
}
.title-underline-classic.left {
    margin: 0 0 1.5rem 0;
}

/* Classic Product Grid */
.classic-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.classic-product-card {
    background: #fff;
    text-align: center;
}
.classic-product-img {
    width: 100%;
    padding-top: 100%;
    position: relative;
    background: #f9f9f9;
    margin-bottom: 1rem;
    overflow: hidden;
}
.classic-product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.classic-product-card:hover .classic-product-img img {
    transform: scale(1.05);
}
.classic-product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.classic-product-info .price {
    font-family: 'Inter', sans-serif;
    color: #666;
    margin-bottom: 1rem;
}

/* Classic About Split */
.classic-about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.classic-about-image img {
    width: 100%;
    border-radius: 2px;
}
.classic-about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 0.5rem;
}
.classic-about-text p {
    font-family: 'Inter', sans-serif;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Classic Footer */
.classic-footer {
    background: #222;
    color: #fff;
    padding: 4rem 0 2rem;
    font-family: 'Inter', sans-serif;
}
.classic-footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.classic-footer h2 {
    font-family: 'Playfair Display', serif;
    color: #bfa15f;
    margin-bottom: 0.5rem;
}
.footer-links a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #bfa15f;
}
.footer-social a {
    color: #aaa;
    font-size: 1.2rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}
.footer-social a:hover {
    color: #bfa15f;
}
.footer-copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 2rem;
    color: #777;
    font-size: 0.9rem;
}

/* Classic Cart */
.classic-cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}
.classic-cart-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #eee;
}
.classic-cart-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.classic-cart-item-details {
    flex: 1;
}
.classic-cart-item-details h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: #222;
    margin-bottom: 0.25rem;
}
.classic-cart-item-details .price {
    color: #666;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
}
.classic-cart-item-details input[type="number"] {
    width: 60px;
    padding: 0.25rem;
    border: 1px solid #ddd;
    border-radius: 2px;
}
.classic-cart-summary {
    background: #faf9f6;
    padding: 2rem;
    border: 1px solid #eee;
    align-self: start;
}
.classic-cart-summary h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #222;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #555;
    font-family: 'Inter', sans-serif;
}
.summary-total {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #222;
}
.empty-cart {
    padding: 3rem 0;
    text-align: center;
    color: #777;
    font-family: 'Inter', sans-serif;
}

@media (max-width: 900px) {
    .classic-hero, .classic-about-split, .classic-cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .classic-hero-text h2 {
        font-size: 3rem;
    }
    .classic-features-grid, .classic-product-grid {
        grid-template-columns: 1fr 1fr;
    }
    .classic-footer-inner {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .classic-features-grid, .classic-product-grid {
        grid-template-columns: 1fr;
    }
    .classic-header nav ul {
        display: none;
    }
}

/* Classic Collage */
.classic-collage {
    position: relative;
    width: 100%;
    height: 500px;
}
.collage-img {
    position: absolute;
    border-radius: 16px; /* Smoother, modern corners */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); /* Softer shadow */
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}
.collage-img:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    z-index: 10;
}
.collage-img-1 {
    width: 60%;
    height: 320px;
    top: 0;
    left: 0;
    z-index: 1;
    border: 4px solid #fff;
    object-position: center;
}
.collage-img-2 {
    width: 55%;
    height: 280px;
    top: 100px;
    right: 0;
    z-index: 2;
    border: 4px solid #fff; /* Thinner, cleaner border */
}
.collage-img-3 {
    width: 65%;
    height: 220px;
    bottom: 0;
    left: 10%;
    z-index: 3;
    border: 4px solid #fff;
    object-position: center 20%;
}
@media (max-width: 900px) {
    .classic-collage {
        height: 400px;
        margin-bottom: 2rem;
    }
}

/* ==========================================================================
   Login Page Styles
   ========================================================================== */
.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1rem;
    background: #faf9f6;
}

.login-container {
    background: #ffffff;
    width: 100%;
    max-width: 450px;
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin: 0 auto;
}

.login-header {
    margin-bottom: 2.5rem;
}

.login-header h2 {
    font-size: 2.2rem;
    color: #222;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.login-header p {
    color: #666;
    font-size: 0.95rem;
}

.center-underline {
    margin: 1rem auto;
}

/* Google Button */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #444;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.btn-google:hover {
    background: #f8f9fa;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transform: translateY(-2px);
    border-color: #ccc;
}

.login-divider {
    display: flex;
    align-items: center;
    margin: 2rem 0;
    color: #999;
    font-size: 0.9rem;
}

.login-divider::before,
.login-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #eee;
}

.login-divider span {
    padding: 0 1rem;
}

.login-form {
    text-align: left;
}

.login-form .form-group {
    margin-bottom: 1.5rem;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background: #fbfbfb;
}

.login-footer-text {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #aaa;
}
