/* ===================================
   MTF Decor Mithla Timber & Furniture - Main Stylesheet
   =================================== */

/* ===== CSS Variables ===== */
:root {
    --primary-color: #8B7355;
    --secondary-color: #2C2C2C;
    --accent-color: #D4AF37;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #E0E0E0;
    --bg-light: #F8F8F8;
    --white: #FFFFFF;
    --black: #000000;
    --success: #28a745;
    --danger: #dc3545;

    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;

    --transition: all 0.3s ease;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    font-size: 16px;
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Navigation ===== */
.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: translateY(0);
}

.navbar-hidden {
    transform: translateY(-100%);
    box-shadow: none;
}

.header-topbar {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.55rem 0;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-weight: 500;
}

.topbar-item i {
    color: var(--primary-color);
}

.topbar-divider {
    color: var(--border-color);
}

.topbar-link {
    color: var(--text-light);
    font-weight: 500;
}

.topbar-link:hover {
    color: var(--primary-color);
}

.topbar-highlight {
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.header-main {
    background: var(--white);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.25rem;
    padding: 0.9rem 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo i {
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    min-height: 56px;
    overflow: visible;
}

.header-search {
    flex: 1;
    max-width: 520px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 0.7rem 1rem;
    border-radius: 999px;
}

.header-search i {
    color: var(--text-light);
}

.header-search input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-family: var(--font-primary);
    color: var(--text-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    flex-wrap: wrap;
    row-gap: 0.25rem;
}

.nav-links>li {
    position: relative;
}

.nav-link {
    font-weight: 500;
    color: var(--text-color);
    position: relative;
    padding: 0.5rem 0;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    line-height: 1.2;
}

.nav-link i.fa-chevron-down {
    font-size: 0.75rem;
    max-width: 12px;
    max-height: 12px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i.fa-chevron-down {
    transform: rotate(180deg);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 1rem;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--text-color);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a strong {
    color: var(--primary-color);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

.nav-link.sale-link {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.5rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s infinite;
}

.nav-link.sale-link::after {
    display: none;
}

.nav-link.sale-link:hover {
    background: linear-gradient(135deg, #ee5a6f, #ff6b6b);
    transform: translateY(-1px);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
    }
}

.nav-actions {
    display: flex;
    gap: 1.5rem;
}

.nav-icon {
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
}

.nav-icon:hover {
    color: var(--primary-color);
}

/* Cart Icon with Badge */
.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 2px 8px rgba(255, 107, 107, 0.4);
    animation: cartBadgePulse 2s infinite;
}

@keyframes cartBadgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.action-btn {
    position: relative;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
}

.action-btn:hover {
    color: var(--primary-color);
}

/* User Link with Name */
.user-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-link:hover .user-name {
    color: var(--primary-color);
}

.login-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    margin-left: 5px;
}

/* User Dropdown Menu */
.user-dropdown {
    position: relative;
}

.user-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s;
    font-family: var(--font-primary);
    color: var(--text-color);
}

.user-dropdown-btn:hover {
    background: var(--bg-light);
}

.user-dropdown-btn i.fa-user-circle {
    font-size: 24px;
    color: var(--primary-color);
}

.user-name-text {
    font-size: 14px;
    font-weight: 600;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.user-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.user-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 8px 0;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-dropdown:hover .user-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.dropdown-item i {
    width: 18px;
    max-width: 18px;
    max-height: 18px;
    font-size: 16px;
    color: var(--primary-color);
}

.dropdown-item:hover {
    background: var(--bg-light);
    padding-left: 24px;
}

.dropdown-divider {
    height: 1px;
    background: var(--border-color);
    margin: 8px 0;
}

.logout-item {
    color: #dc3545;
    font-weight: 700;
}

.logout-item i {
    color: #dc3545;
}

.logout-item:hover {
    background: #fee;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(139, 115, 85, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 12px 40px;
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-add-cart {
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px;
    margin-top: 10px;
}

.btn-add-cart:hover {
    background-color: var(--primary-color);
}

/* ===== Hero Section ===== */
/* ===== Modern Hero Section - Pepperfry Style ===== */
.hero-section-modern {
    background: #f8f8f8;
    padding-bottom: 40px;
}

.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.p-0 {
    padding: 0 !important;
}

/* Main Hero Banner */
.hero-banner-wrapper {
    position: relative;
    background: #fff;
}

.main-hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f0f0f0;
}

.main-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.main-hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.main-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Hero Slide Content */
.hero-slide-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    max-width: 600px;
    color: #fff;
    text-align: left;
}

.hero-slide-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-slide-content p {
    font-size: 20px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-slide-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-slide-btn:hover {
    background: #c49d2f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.slider-nav:hover {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 5px;
}

/* Hero Category Grid */
.hero-category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: -80px;
    position: relative;
    z-index: 5;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.hero-cat-card {
    background: var(--primary-color);
    padding: 30px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-cat-card:last-child {
    border-right: none;
}

.hero-cat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cat-icon {
    font-size: 40px;
    max-width: 40px;
    max-height: 40px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-cat-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.hero-cat-card p {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.hero-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.hero-cat-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Shop By Category Banner Section */
.shop-by-category-banner {
    padding: 60px 0 40px;
    background: #fff;
}

.section-heading {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-family: var(--font-heading);
}

.category-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.category-banner-item {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.category-banner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.category-banner-item:hover img {
    transform: scale(1.08);
}

.category-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, transparent 100%);
    color: #fff;
    transition: all 0.3s ease;
}

.category-banner-overlay h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.category-banner-overlay span {
    font-size: 14px;
    opacity: 0.9;
}

/* Deals Section */
.deals-section {
    padding: 60px 0;
    background: #f8f8f8;
}

.deals-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.view-all-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--accent-color);
    gap: 12px;
}

.deals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.deal-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #dc3545;
    color: #fff;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(220, 53, 69, 0.4);
}

.deal-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.deal-card:hover img {
    transform: scale(1.05);
}

.deal-info {
    padding: 20px;
}

.deal-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.deal-price {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.new-price {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
}

.deal-btn {
    display: inline-block;
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.deal-btn:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-2px);
}

/* Legacy Hero Styles (keeping for compatibility) */
.hero {
    position: relative;
    height: 700px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2416 50%, #4a3728 100%);
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    animation: none;
}

@keyframes kenBurns {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.hero-slide.slide-1 {
    background-color: #1a1a1a;
}

.hero-slide.slide-2 {
    background-color: #2C2C2C;
}

.hero-slide.slide-3 {
    background-color: #111111;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 115, 85, 0.15) 0%, transparent 50%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(139, 115, 85, 0.4) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.25);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
}

.hero-arrow:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-prev {
    left: 18px;
}

.hero-next {
    right: 18px;
}

.hero-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.hero-dot.active {
    width: 26px;
    background: rgba(255, 255, 255, 0.7);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.7), 0 0 40px rgba(212, 175, 55, 0.3);
    letter-spacing: -1.5px;
    line-height: 1.1;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #f0e6d2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    animation: fadeInUp 1s ease 0.2s both;
    text-shadow: 2px 3px 6px rgba(0, 0, 0, 0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Features Section ===== */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(139, 115, 85, 0.05) 0%, transparent 50%);
    animation: driftFeatures 20s linear infinite;
}

@keyframes driftFeatures {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(50%);
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    text-align: center;
    padding: 3rem 2rem;
    background-color: var(--white);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.05) 0%, rgba(212, 175, 55, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.2);
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(139, 115, 85, 0.3));
    margin-bottom: 1.5rem;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: inline-block;
    position: relative;
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(360deg) scale(1.2);
    color: var(--accent-color);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    width: 100px;
    height: 100px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.feature-desc {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
}

/* ===== Section Styles ===== */
.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1), rgba(212, 175, 55, 0.15));
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    position: relative;
    padding: 10px 24px 10px 48px;
    border-radius: 30px;
    border: 1px solid rgba(139, 115, 85, 0.2);
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 2px;
    background: var(--accent-color);
}

.section-title {
    font-size: 3.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    border-radius: 2px;
}

.section-header.centered .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-desc {
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.section-header {
    text-align: left;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header.centered {
    text-align: center;
}

.section-footer {
    text-align: center;
    margin-top: 4rem;
}

/* ===== Home About Section ===== */
.home-about {
    padding: 5rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding-right: 2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.08);
}

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

/* ===== Categories Section ===== */
.categories {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1) 0%, rgba(212, 175, 55, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(139, 115, 85, 0.2);
}

.category-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.15);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-overlay-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-overlay-link i {
    font-size: 2rem;
    color: white;
    transform: translateX(-10px);
    transition: transform 0.4s ease;
}

.category-card:hover .category-overlay {
    opacity: 1;
}

.category-card:hover .category-overlay-link i {
    transform: translateX(0);
}

.category-info {
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.category-title {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.category-card:hover .category-title {
    color: var(--primary-color);
}

.category-desc {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 1.05rem;
}

.category-count {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.category-count i {
    color: var(--accent-color);
}

.category-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.category-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.category-link:hover::after {
    width: calc(100% - 30px);
}

.category-link:hover {
    gap: 1rem;
    color: var(--accent-color);
}

.category-link i {
    transition: transform 0.3s ease;
}

.category-link:hover i {
    transform: translateX(5px);
}

/* ===== Featured Products Section ===== */
.featured-products {
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transform: translateY(-12px) scale(1.02);
    border-color: var(--accent-color);
}

.product-card:hover::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.product-badge.sale {
    background-color: var(--danger);
}

.product-image {
    height: 280px;
    position: relative;
    overflow: hidden;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.12);
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.action-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: var(--secondary-color);
}

.product-category {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--text-light);
    margin-left: 0.3rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.price-old {
    font-size: 1.1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

/* ===== Image Placeholder ===== */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 50%, #e0e0e0 100%);
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        transform: translate(-25%, -25%) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(0%, 0%) scale(1.2);
        opacity: 0.6;
    }
}

.image-placeholder i {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    opacity: 0.6;
    animation: float 3s ease-in-out infinite;
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.image-placeholder.large i {
    font-size: 7rem;
}

.image-placeholder p {
    font-size: 1.1rem;
    opacity: 0.7;
    z-index: 1;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(139, 115, 85, 0.1);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139, 115, 85, 0.15);
    border-color: var(--accent-color);
}

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.author-name {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== Newsletter Section ===== */
.newsletter {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
}

.newsletter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.newsletter-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-desc {
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
}

.newsletter-input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-input:focus {
    outline: none;
}

/* ===== Footer ===== */
.footer {
    background: #f8f9fa;
    color: #333;
}

/* Footer Newsletter */
.footer-newsletter {
    background: linear-gradient(135deg, #8B7355 0%, #6d5842 100%);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.1;
}

.newsletter-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.newsletter-text {
    color: white;
}

.newsletter-text h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.newsletter-text h3 i {
    font-size: 2.5rem;
    color: #D4AF37;
}

.newsletter-text p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.newsletter-form-wrapper {
    max-width: 600px;
}

.newsletter-form {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: white;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    font-size: 1rem;
    outline: none;
    min-width: 0;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: none;
}

.btn-newsletter {
    padding: 18px 35px;
    background: linear-gradient(135deg, #D4AF37 0%, #8B7355 100%);
    color: white !important;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
}

.btn-newsletter:hover {
    background: linear-gradient(135deg, #E5C050 0%, #9C8466 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.btn-newsletter:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-newsletter i {
    font-size: 1rem;
}

/* Newsletter Error & Success Messages */
.newsletter-error,
.newsletter-success {
    margin-top: 15px;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInDown 0.5s ease;
    text-align: center;
    justify-content: center;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.newsletter-error {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.newsletter-success {
    background: linear-gradient(135deg, #51cf66 0%, #37b24d 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(81, 207, 102, 0.3);
}

.newsletter-form input.is-invalid {
    border: 2px solid #ff6b6b;
}

/* Footer Main */
.footer-main {
    background: #ffffff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1.3fr;
    gap: 3rem;
}

.footer-col {
    animation: fadeInUp 0.6s ease-out backwards;
}

.footer-col:nth-child(1) {
    animation-delay: 0.1s;
}

.footer-col:nth-child(2) {
    animation-delay: 0.2s;
}

.footer-col:nth-child(3) {
    animation-delay: 0.3s;
}

.footer-col:nth-child(4) {
    animation-delay: 0.4s;
}

.footer-col:nth-child(5) {
    animation-delay: 0.5s;
}

.footer-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: #8B7355;
    font-family: 'Playfair Display', serif;
}

.footer-title i {
    color: #D4AF37;
    font-size: 2rem;
}

.footer-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-app-download {
    margin-top: 2rem;
}

.footer-app-download p {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.2rem;
    background: #1a1a1a;
    color: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.app-btn:hover {
    background: #8B7355;
    transform: translateX(5px);
}

.app-btn i {
    font-size: 2rem;
}

.app-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.app-btn strong {
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2C2C2C;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, transparent);
    border-radius: 2px;
}

.footer-heading i {
    color: #8B7355;
    font-size: 1.3rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0;
}

.footer-links a i {
    color: #D4AF37;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #8B7355;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    color: #666;
    align-items: flex-start;
}

.footer-contact i {
    color: #8B7355;
    font-size: 1.3rem;
    width: 25px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact div {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-contact strong {
    color: #333;
    font-size: 0.95rem;
}

.footer-contact span {
    font-size: 0.9rem;
}

.footer-social {
    margin-top: 2rem;
}

.footer-social p {
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.twitter {
    background: #1DA1F2;
}

.social-link.youtube {
    background: #FF0000;
}

.social-link.pinterest {
    background: #E60023;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer-contact i {
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 20px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    overflow: hidden;
    font-size: 1.1rem;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--accent-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    z-index: -1;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link:hover {
    transform: translateY(-8px) rotate(360deg);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

.footer-bottom {
    background: #2C2C2C;
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copyright {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.95rem;
}

.footer-links-bottom {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links-bottom a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-bottom a:hover {
    color: #D4AF37;
}

.footer-links-bottom span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-payment {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-payment p {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
}

.payment-icons {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.payment-icons i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.payment-icons i:hover {
    color: #D4AF37;
    transform: scale(1.2);
}

/* ===== Page Header ===== */
.page-header {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Continue in next part... */

/* ===== New Pages Styles ===== */

/* Category Showcase */
.category-showcase {
    padding: 5rem 0;
    background: #f8f9fa;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.category-highlight-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.category-highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.category-highlight-card .category-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.category-highlight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2C2C2C;
}

.category-highlight-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B7355;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-btn:hover {
    gap: 1rem;
    color: #D4AF37;
}

/* Age Category Cards */
.age-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.age-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.age-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.age-card i {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

.age-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

.age-card p {
    color: #666;
}

/* Room Cards */
.room-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.room-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.room-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.room-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
}

.room-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.room-card ul li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.room-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-size: 1.5rem;
    line-height: 1;
}

/* Collection Showcase */
.collection-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.collection-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.collection-image {
    height: 300px;
}

.collection-info {
    padding: 2.5rem;
    position: relative;
}

.collection-badge {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.collection-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.collection-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* Collections Page */
.collections-page {
    padding: 5rem 0;
}

.collection-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 4rem;
}

.collection-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.collection-banner-image {
    height: 400px;
}

.collection-banner-content {
    padding: 3rem;
}

.collection-tag {
    display: inline-block;
    background: #9b59b6;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.collection-banner-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    font-family: 'Playfair Display', serif;
}

.collection-banner-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.collection-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat strong {
    font-size: 2rem;
    color: #8B7355;
    font-weight: 700;
}

.stat span {
    color: #666;
    font-size: 0.95rem;
}

/* Services Page */
.services-page {
    padding: 5rem 0;
    background: #f8f9fa;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.service-card>p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.8rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-features i {
    color: #27ae60;
    font-size: 1.1rem;
}

.service-cta {
    background: linear-gradient(135deg, #8B7355, #6d5842);
    padding: 4rem;
    border-radius: 25px;
    text-align: center;
    color: white;
    margin-top: 5rem;
}

.service-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* FabFamily Page */
.fabfamily-page {
    padding: 5rem 0;
}

.fabfamily-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.intro-content {
    padding: 2rem 0;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #2C2C2C;
    font-family: 'Playfair Display', serif;
}

.intro-content p {
    color: #666;
    line-height: 1.9;
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.intro-image {
    height: 400px;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.tier-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.tier-card.featured {
    border: 3px solid #f39c12;
    transform: scale(1.05);
}

.tier-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: #e74c3c;
    color: white;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tier-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: white;
}

.tier-card h3 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    color: #2C2C2C;
}

.tier-requirement {
    color: #666;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.tier-benefits {
    list-style: none;
    text-align: left;
    margin-bottom: 2.5rem;
}

.tier-benefits li {
    padding: 0.8rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.tier-benefits i {
    color: #27ae60;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #f39c12;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2C2C2C;
}

.step p {
    color: #666;
    line-height: 1.7;
}

.member-benefits-section {
    margin-top: 5rem;
    padding: 4rem;
    background: #f8f9fa;
    border-radius: 25px;
}

.member-benefits-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2C2C2C;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 3rem;
    color: #f39c12;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2C2C2C;
}

.benefit-item p {
    color: #666;
}

.fabfamily-cta {
    text-align: center;
    padding: 5rem 2rem;
    margin-top: 5rem;
    background: linear-gradient(135deg, #f39c12, #e67e22);
    border-radius: 25px;
    color: white;
}

.fabfamily-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.fabfamily-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Sale Page */
.sale-header {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 6rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.sale-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><text x="10" y="50" font-size="40" fill="rgba(255,255,255,0.05)">%</text></svg>');
    animation: scrollBackground 20s linear infinite;
}

@keyframes scrollBackground {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(100px);
    }
}

.sale-banner {
    position: relative;
    z-index: 1;
}

.sale-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.sale-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.sale-title i {
    animation: pulse 1.5s infinite;
}

.sale-tagline {
    font-size: 3rem;
    font-weight: 700;
    color: #ffd700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 3rem;
}

.sale-countdown {
    margin-bottom: 3rem;
}

.countdown-timer {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.timer-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    min-width: 100px;
}

.timer-value {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.timer-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-sale {
    background: #ffd700;
    color: #c0392b;
    font-size: 1.2rem;
    padding: 1.2rem 3rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-sale:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.sale-categories {
    padding: 5rem 0;
    background: #f8f9fa;
}

.discount-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.discount-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.discount-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.discount-badge {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.discount-card h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
    color: #2C2C2C;
}

.discount-card p {
    color: #666;
    margin-bottom: 2rem;
}

.sale-products {
    padding: 5rem 0;
}

.product-card.sale-card {
    border: 2px solid #e74c3c;
}

.sale-label {
    position: absolute;
    top: 50px;
    right: -35px;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.85rem;
    z-index: 5;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.discount-percent {
    display: inline-block;
    background: #27ae60;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.stock-indicator {
    background: #fff3cd;
    color: #856404;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.sale-features {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Filter Section */
.filter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.filter-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    border: 2px solid #ddd;
    background: white;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #8B7355;
    color: white;
    border-color: #8B7355;
}

.sort-dropdown select {
    padding: 0.8rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    font-size: 1rem;
}

.new-arrivals-section,
.furniture-categories {
    padding: 5rem 0;
}

/* Premium Collection Enhancements */
.collection-banner {
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.03), rgba(212, 175, 55, 0.03));
    padding: 3rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.collection-banner-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-banner:hover .collection-banner-image img {
    transform: scale(1.05);
}

.collection-tag {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.collection-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.collection-stats .stat {
    text-align: center;
}

.collection-stats .stat strong {
    display: block;
    font-size: 1.8rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
}

.collection-stats .stat span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Membership Tiers Premium Styling */
.membership-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.tier-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid transparent;
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.tier-card.featured {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.05), rgba(230, 126, 34, 0.05));
    border-color: #f39c12;
    transform: scale(1.05);
}

.tier-card.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.tier-ribbon {
    position: absolute;
    top: 20px;
    right: -10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 0.4rem 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 5px 0 0 5px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.tier-badge {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tier-benefits {
    text-align: left;
    margin: 2rem 0;
}

.tier-benefits li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tier-benefits li:last-child {
    border-bottom: none;
}

.tier-benefits i {
    color: #27ae60;
    font-size: 1.1rem;
}

/* Service Cards Premium Enhancement */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

.service-features {
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.6rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
}

.service-features i {
    color: #27ae60;
}

/* Contact Form Premium Styling */
.contact-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Category Cards Enhancement */
.category-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.category-card .category-image img {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
}

.category-info {
    padding: 2rem;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}

.category-link:hover {
    gap: 1rem;
}

/* Room Cards Premium Styling */
.room-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.room-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.room-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 115, 85, 0.1), rgba(212, 175, 55, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
}

.room-card ul {
    margin: 1.5rem 0;
    text-align: left;
}

.room-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.room-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* Age Category Grid */
.age-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.age-card {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.05), rgba(255, 99, 71, 0.05));
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.age-card:hover {
    transform: scale(1.05);
    border-color: #ffa500;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.2);
}

.age-card i {
    font-size: 3rem;
    color: #ffa500;
    margin-bottom: 1rem;
}

/* ===== GLOBAL ICON & SVG SIZE FIX ===== */
/* Prevent all icons and SVGs from becoming oversized */

/* FontAwesome Icons - Default sizes */
i.fa, i.fas, i.far, i.fab, i.fal, i.fad {
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Ensure all icons are visible */
.fas, .far, .fab, .fa {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}

.far {
    font-weight: 400;
}

.fab {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400;
}

/* Header and Navigation Icons */
.topbar-item i,
.action-btn i,
.header-search i,
.nav-icon i {
    font-size: 1rem !important;
    width: auto !important;
    height: auto !important;
    min-width: 16px;
    min-height: 16px;
}

.action-btn i {
    font-size: 1.2rem !important;
}

/* Chevron arrows - specific fix */
i.fa-chevron-down,
i.fa-chevron-up,
i.fa-chevron-left,
i.fa-chevron-right {
    font-size: 0.85em !important;
    max-width: 14px;
    max-height: 14px;
}

/* Dropdown arrows in FAQs and navigation */
.faq-question i.fa-chevron-down {
    max-width: 14px;
    max-height: 14px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* Navigation icons */
.nav-icon svg,
.nav-icon i {
    max-width: 20px;
    max-height: 20px;
}

/* Cart badge icons */
.cart-icon i {
    font-size: 1.2rem !important;
    max-width: 24px !important;
    max-height: 24px !important;
}

/* Button icons */
.btn i:not(.feature-icon):not(.hero-cat-icon),
button i:not(.feature-icon):not(.hero-cat-icon) {
    font-size: inherit;
    max-width: 20px;
    max-height: 20px;
}

/* Footer icons */
.footer-links i,
.footer-contact i {
    font-size: 14px;
    max-width: 16px;
    max-height: 16px;
}

/* Social icons */
.social-link i {
    font-size: 1.1rem;
    max-width: 20px;
    max-height: 20px;
}

/* Form icons */
.form-group i,
.input-group i {
    font-size: 1rem;
    max-width: 18px;
    max-height: 18px;
}

/* Alert icons */
.alert i {
    font-size: 1.1rem;
    max-width: 20px;
    max-height: 20px;
}

/* Prevent inline SVG from growing */
.pagination svg,
.btn svg,
button svg,
a svg {
    max-width: 16px;
    max-height: 16px;
    vertical-align: middle;
}

/* Service tabs icons */
.service-tab i {
    max-width: 20px;
    max-height: 20px;
}

/* Category card icons */
.category-overlay-link i {
    font-size: 1.5rem;
    max-width: 24px;
    max-height: 24px;
}

/* Category link arrows */
.category-link i {
    font-size: 0.9rem;
    max-width: 14px;
    max-height: 14px;
}

/* ===================================
   ABOUT PAGE SECTIONS
   =================================== */

/* About Page Header */
.about-page-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #2c2c2c 0%, #8B4513 50%, #D4AF37 100%);
    position: relative;
    overflow: hidden;
}

.about-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect fill="rgba(255,255,255,0.02)" width="50" height="50"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.header-content-wrapper {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.header-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    animation: fadeInDown 0.8s ease-out;
}

.about-main-title {
    font-size: 4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.about-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: #D4AF37;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.about-tagline {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.header-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D4AF37, transparent);
    margin: 0 auto;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* About Intro Section */
.about-intro-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.about-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139,69,19,0.02) 0%, rgba(212,175,55,0.02) 100%);
    z-index: 0;
}

.about-intro-section .row {
    position: relative;
    z-index: 1;
}

.about-image-wrapper {
    position: relative;
    padding: 30px;
}

.image-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #D4AF37;
    border-radius: 20px;
    transform: translate(-20px, -20px);
    z-index: 0;
}

.about-main-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.about-main-image:hover {
    transform: scale(1.02);
}

.image-badge {
    position: absolute;
    bottom: 50px;
    right: 50px;
    z-index: 2;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(139,69,19,0.3);
    text-align: center;
    animation: float 3s ease-in-out infinite;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.about-content-box {
    padding-left: 50px;
}

.content-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139,69,19,0.1), rgba(212,175,55,0.1));
    color: #8B4513;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    border: 1px solid rgba(139,69,19,0.2);
}

.content-tag i {
    font-size: 16px;
    max-width: 16px;
    max-height: 16px;
}

.content-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.content-lead {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
    font-weight: 400;
}

.content-text {
    font-size: 1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: white;
    border-color: #8B4513;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(139,69,19,0.1);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(139,69,19,0.2);
}

.feature-icon-box i {
    color: white;
    font-size: 20px;
    max-width: 20px;
    max-height: 20px;
}

.feature-info {
    flex: 1;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.feature-desc {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.content-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-custom {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-custom:hover::before {
    width: 300px;
    height: 300px;
}

.btn-custom span,
.btn-custom i {
    position: relative;
    z-index: 1;
}

.btn-custom i {
    font-size: 14px;
    max-width: 14px;
    max-height: 14px;
    transition: transform 0.3s ease;
}

.btn-custom:hover i {
    transform: translateX(5px);
}

.btn-custom-primary {
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(139,69,19,0.3);
}

.btn-custom-primary:hover {
    box-shadow: 0 15px 40px rgba(139,69,19,0.4);
    transform: translateY(-3px);
}

.btn-custom-outline {
    background: transparent;
    color: #8B4513;
    border: 2px solid #8B4513;
}

.btn-custom-outline:hover {
    background: #8B4513;
    color: white;
    transform: translateY(-3px);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #8B4513;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 5px;
}

.member-role {
    color: #8B4513;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.member-social .social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8B4513;
    transition: all 0.3s ease;
}

.member-social .social-link:hover {
    background: #8B4513;
    color: white;
    transform: scale(1.1);
}

.member-social .social-link i {
    font-size: 16px;
    max-width: 16px;
    max-height: 16px;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.9;
}

.stat-icon i {
    max-width: 48px;
    max-height: 48px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    font-weight: 500;
}

/* Modern Stats Section */
.stats-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #8B4513 70%, #D4AF37 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212,175,55,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(139,69,19,0.1) 0%, transparent 50%);
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.stats-desc {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-card-modern {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.stat-card-modern:hover::before {
    left: 100%;
}

.stat-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    background: rgba(255,255,255,0.15);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #2c2c2c;
    box-shadow: 0 10px 30px rgba(212,175,55,0.3);
    transition: transform 0.3s ease;
}

.stat-card-modern:hover .stat-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
}

.stat-icon-wrapper i {
    max-width: 40px;
    max-height: 40px;
}

.stat-number-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.stat-label-modern {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 20px;
}

.stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 4px;
    overflow: hidden;
}

.stat-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37 0%, #F4D03F 100%);
    border-radius: 4px;
    transition: width 2s ease;
}

/* Modern Story Section */
.about-story-modern {
    padding: 100px 0;
    background: white;
    position: relative;
}

.story-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(139,69,19,0.1), rgba(212,175,55,0.1));
    color: #8B4513;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(139,69,19,0.2);
}

.story-tag i {
    font-size: 16px;
    max-width: 16px;
    max-height: 16px;
}

.story-heading {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #D4AF37;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -44px;
    top: 0;
    width: 15px;
    height: 15px;
    background: #D4AF37;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #D4AF37;
}

.timeline-content {
    padding-left: 20px;
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
    margin-top: 10px;
}

.story-image-area {
    position: relative;
}

.story-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.story-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.story-image-container:hover .story-main-img {
    transform: scale(1.05);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139,69,19,0.8) 0%, rgba(212,175,55,0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.story-image-container:hover .story-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: white;
}

.overlay-content i {
    font-size: 4rem;
    margin-bottom: 15px;
    display: block;
    max-width: 64px;
    max-height: 64px;
    margin: 0 auto 15px;
}

.overlay-content span {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    border-color: #8B4513;
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(139,69,19,0.15);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.value-icon i {
    max-width: 32px;
    max-height: 32px;
}

.value-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.value-text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(139,69,19,0.05) 0%, rgba(212,175,55,0.05) 100%);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.mv-card {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-left: 5px solid #8B4513;
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 25px;
}

.mv-icon i {
    max-width: 30px;
    max-height: 30px;
}

.mv-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.mv-text {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section Improvements */
.about-section {
    padding: 80px 0;
}

.about-section .feature-box {
    text-align: center;
    padding: 20px;
}

.about-section .feature-box i {
    max-width: 32px;
    max-height: 32px;
}

.about-section .feature-box h5 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2c2c2c;
}

/* Responsive Styles for About Page */
@media (max-width: 991px) {
    .about-content-box {
        padding-left: 15px;
        margin-top: 50px;
    }
    
    .about-image-wrapper {
        padding: 20px;
    }
    
    .image-decoration {
        transform: translate(-15px, -15px);
    }
    
    .about-main-image {
        height: 400px;
    }
    
    .image-badge {
        bottom: 30px;
        right: 30px;
        padding: 20px;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .story-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-main-img {
        height: 450px;
    }
}

@media (max-width: 768px) {
    .about-page-header {
        padding: 80px 0 60px;
    }
    
    .about-main-title {
        font-size: 2.8rem;
    }
    
    .about-subtitle {
        font-size: 1.5rem;
    }
    
    .about-tagline {
        font-size: 1rem;
    }
    
    .about-intro-section {
        padding: 60px 0;
    }
    
    .content-heading {
        font-size: 2.2rem;
    }
    
    .content-lead {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .content-actions {
        flex-direction: column;
    }
    
    .btn-custom {
        width: 100%;
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stats-section-modern {
        padding: 70px 0;
    }
    
    .stats-title {
        font-size: 2.2rem;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .about-story-modern {
        padding: 70px 0;
    }
    
    .story-heading {
        font-size: 2.2rem;
    }
    
    .story-timeline {
        padding-left: 30px;
    }
    
    .story-main-img {
        height: 400px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-card {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .about-page-header {
        padding: 60px 0 40px;
    }
    
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }
    
    .header-badge {
        font-size: 0.75rem;
        padding: 6px 20px;
    }
    
    .about-intro-section {
        padding: 40px 0;
    }
    
    .about-image-wrapper {
        padding: 10px;
    }
    
    .image-decoration {
        transform: translate(-10px, -10px);
        border-width: 2px;
    }
    
    .about-main-image {
        height: 300px;
        border-radius: 15px;
    }
    
    .image-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px;
        border-radius: 15px;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .content-heading {
        font-size: 1.8rem;
    }
    
    .content-lead {
        font-size: 1rem;
    }
    
    .content-text {
        font-size: 0.95rem;
    }
    
    .feature-icon-box {
        width: 45px;
        height: 45px;
    }
    
    .feature-icon-box i {
        font-size: 18px;
        max-width: 18px;
        max-height: 18px;
    }
    
    .feature-title {
        font-size: 1rem;
    }
    
    .btn-custom {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .stats-section-modern {
        padding: 50px 0;
    }
    
    .stats-title {
        font-size: 1.8rem;
    }
    
    .stats-desc {
        font-size: 1rem;
    }
    
    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
    
    .stat-icon-wrapper i {
        max-width: 32px;
        max-height: 32px;
    }
    
    .stat-number-modern {
        font-size: 2.2rem;
    }
    
    .stat-label-modern {
        font-size: 0.9rem;
    }
    
    .about-story-modern {
        padding: 50px 0;
    }
    
    .story-heading {
        font-size: 1.8rem;
    }
    
    .story-timeline {
        padding-left: 20px;
        border-left-width: 2px;
    }
    
    .timeline-dot {
        left: -24px;
        width: 12px;
        height: 12px;
        border-width: 2px;
    }
    
    .timeline-content {
        padding-left: 10px;
    }
    
    .timeline-year {
        font-size: 0.8rem;
        padding: 4px 15px;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
    
    .story-main-img {
        height: 300px;
    }
    
    .overlay-content i {
        font-size: 3rem;
        max-width: 48px;
        max-height: 48px;
    }
    
    .overlay-content span {
        font-size: 1rem;
    }
    
    .team-section,
    .stats-section,
    .values-section,
    .mission-vision {
        padding: 50px 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-icon i {
        max-width: 40px;
        max-height: 40px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* About Story Section */
.about-story {
    padding: 80px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text {
    padding-right: 20px;
}

.story-text .section-desc {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
}

.story-image {
    position: relative;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #8B4513 0%, #D4AF37 100%);
    text-align: center;
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 14px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #8B4513;
    border: 2px solid white;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #8B4513;
    transform: translateY(-3px);
}

/* Modern CTA Section */
.cta-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c2c2c 0%, #8B4513 50%, #D4AF37 100%);
    position: relative;
    overflow: hidden;
}

.cta-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212,175,55,0.1) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(139,69,19,0.1) 0%, transparent 60%);
}

.cta-content-modern {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cta-title-modern {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
}

.cta-text-modern {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.btn-cta-primary,
.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-cta-primary::before,
.btn-cta-outline::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-cta-primary:hover::before,
.btn-cta-outline:hover::before {
    width: 350px;
    height: 350px;
}

.btn-cta-primary span,
.btn-cta-primary i,
.btn-cta-outline span,
.btn-cta-outline i {
    position: relative;
    z-index: 1;
}

.btn-cta-primary i,
.btn-cta-outline i {
    font-size: 16px;
    max-width: 16px;
    max-height: 16px;
    transition: transform 0.3s ease;
}

.btn-cta-primary:hover i,
.btn-cta-outline:hover i {
    transform: translateX(5px);
}

.btn-cta-primary {
    background: white;
    color: #8B4513;
    box-shadow: 0 15px 40px rgba(255,255,255,0.2);
}

.btn-cta-primary:hover {
    box-shadow: 0 20px 50px rgba(255,255,255,0.3);
    transform: translateY(-5px);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-outline:hover {
    background: white;
    color: #8B4513;
    transform: translateY(-5px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.cta-feature i {
    font-size: 24px;
    max-width: 24px;
    max-height: 24px;
    opacity: 0.9;
}

/* Responsive for Story and CTA */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-text {
        padding-right: 0;
    }
    
    .about-story {
        padding: 60px 0;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        min-width: 200px;
    }
    
    .cta-section-modern {
        padding: 70px 0;
    }
    
    .cta-title-modern {
        font-size: 2.5rem;
    }
    
    .cta-text-modern {
        font-size: 1.1rem;
    }
    
    .cta-buttons-modern {
        margin-bottom: 35px;
    }
    
    .cta-features {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .about-story {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
    
    .cta-section-modern {
        padding: 50px 0;
    }
    
    .cta-badge {
        font-size: 0.75rem;
        padding: 6px 20px;
    }
    
    .cta-title-modern {
        font-size: 2rem;
    }
    
    .cta-text-modern {
        font-size: 1rem;
    }
    
    .cta-buttons-modern {
        flex-direction: column;
        margin-bottom: 30px;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
        padding: 15px 30px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-feature {
        font-size: 0.95rem;
    }
    
    .cta-feature i {
        font-size: 20px;
        max-width: 20px;
        max-height: 20px;
    }
}

/* ===================================
   BOOTSTRAP-LIKE UTILITIES
   =================================== */

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-lg-6,
.col-md-6,
.col-sm-12,
.col-6,
.col-12 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.col-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Alignment utilities */
.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

/* Text utilities */
.text-primary {
    color: #8B4513 !important;
}

.text-muted {
    color: #666 !important;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.small {
    font-size: 0.875rem;
}

/* Spacing utilities */
.mb-3 {
    margin-bottom: 1rem !important;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.pl-lg-5 {
    padding-left: 0;
}

@media (min-width: 992px) {
    .pl-lg-5 {
        padding-left: 3rem !important;
    }
}

/* Image utilities */
.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 8px !important;
}

.shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Responsive */
@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .pl-lg-5 {
        padding-left: 15px !important;
        margin-top: 30px;
    }
}

/* Additional Utilities for About Page */
.sub-title {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
/* ===== Product Notification Overlay ===== */
.product-notification-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    border-radius: 8px;
}

.product-notification-overlay .notification-content {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.product-notification-overlay .notification-content i {
    font-size: 2.5rem;
    margin-bottom: 5px;
    max-width: 40px;
    max-height: 40px;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Ensure product cards have relative positioning for overlay */
.product-card {
    position: relative;
}
