/* Luxury Navy Blue Theme - Premium Watch Store */
/* Color Palette */
:root {
    --navy-primary: #1a1a2e;
    --navy-secondary: #16213e;
    --navy-accent: #0f3460;
    --navy-light: #2d3748;
    --white-primary: #ffffff;
    --white-secondary: #f8fafc;
    --white-accent: #e2e8f0;
    --gold-accent: #d4af37;
    --gold-light: #f4e4bc;
    --text-dark: #1a202c;
    --text-light: #4a5568;
    --text-muted: #718096;
    --shadow-light: rgba(26, 26, 46, 0.08);
    --shadow-medium: rgba(26, 26, 46, 0.2);
    --shadow-heavy: rgba(26, 26, 46, 0.3);
    --gradient-navy: linear-gradient(135deg, var(--navy-primary) 0%, var(--navy-secondary) 100%);
    --gradient-white: linear-gradient(135deg, var(--white-primary) 0%, var(--white-secondary) 100%);
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white-primary);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-primary);
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; font-weight: 700; }
h2 { font-size: 2.8rem; font-weight: 600; }
h3 { font-size: 2.2rem; font-weight: 600; }
h4 { font-size: 1.8rem; font-weight: 500; }
h5 { font-size: 1.4rem; font-weight: 500; }
h6 { font-size: 1.2rem; font-weight: 500; }

p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Header & Navigation */
.header-area {
    background: var(--white-primary);
    box-shadow: 0 2px 20px var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.classy-navbar {
    background: transparent !important;
    padding: 1rem 0;
}

.classy-navbar .classy-navbar-toggler {
    border: none;
    color: var(--navy-primary);
}

.classy-navbar .classy-menu {
    background: var(--white-primary);
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.classy-navbar .classy-menu .classynav ul li a {
    color: var(--navy-primary) !important;
    font-weight: 500;
    font-size: 1rem;
    padding: 0 12px;
    transition: all 0.3s ease;
    border-radius: 0;
    margin: 0;
    height: 35px;
    line-height: 34px;
}

.classy-navbar .classy-menu .classynav ul li a:hover {
    color: var(--gold-accent) !important;
    background: var(--navy-primary);
    transform: none;
}

.classy-navbar .classy-menu .classynav ul li.active a {
    color: var(--gold-accent) !important;
    background: var(--navy-primary);
}

/* Logo */
.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-primary);
    text-decoration: none;
}

.logo span {
    color: var(--gold-accent);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-navy);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white-primary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-content h1 {
    color: var(--white-primary);
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px var(--shadow-heavy);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    color: var(--white-accent);
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Buttons */
.btn-luxury {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    margin: 10px;
}

.btn-luxury-primary {
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-color: var(--gold-accent);
}

.btn-luxury-primary:hover {
    background: var(--white-primary);
    color: var(--navy-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-luxury-secondary {
    background: transparent;
    color: var(--white-primary);
    border-color: var(--white-primary);
}

.btn-luxury-secondary:hover {
    background: var(--white-primary);
    color: var(--navy-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-luxury-outline {
    background: transparent;
    color: var(--navy-primary);
    border-color: var(--navy-primary);
}

.btn-luxury-outline:hover {
    background: var(--navy-primary);
    color: var(--white-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.btn-luxury-filled {
    background: var(--gold-accent);
    color: var(--navy-primary);
    border-color: var(--gold-accent);
}

.btn-luxury-filled:hover {
    background: var(--white-primary);
    color: var(--navy-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px var(--shadow-medium);
}

/* Section Styling */
.section-padding {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    position: relative;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gold-accent);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    background: var(--white-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    margin-bottom: 2rem;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    background: var(--white-secondary);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.product-card .product-info {
    padding: 2rem;
    text-align: center;
}

.product-card .product-brand {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-card .product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.product-card .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
}

/* Category Cards */
.category-card {
    background: var(--white-primary);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-navy);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.category-card .category-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid var(--white-accent);
    transition: all 0.3s ease;
}

.category-card:hover .category-image {
    border-color: var(--gold-accent);
    transform: scale(1.1);
}

.category-card .category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card .category-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 0.5rem;
}

.category-card .category-description {
    color: var(--text-light);
    font-size: 1rem;
}

/* Blog Cards */
.blog-card {
    background: var(--white-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.blog-card .blog-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.blog-card .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-card .blog-content {
    padding: 2rem;
}

.blog-card .blog-category {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-card .blog-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-card .blog-excerpt {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.blog-card .blog-date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Collections Section */
.collections-section {
    padding: 6rem 0;
    background: #f8fafc;
    position: relative;
}

.horizontal-scroll-container {
    position: relative;
    padding: 1rem 0;
}

.horizontal-scroll-container .row {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.horizontal-scroll-container .collection-item {
    flex: 0 0 auto;
    width: calc(20% - 1.6rem);
    min-width: 200px;
    max-width: 250px;
    margin-bottom: 2rem;
}

/* Responsive grid layout */
@media (max-width: 1200px) {
    .horizontal-scroll-container .collection-item {
        width: calc(25% - 1.5rem);
        min-width: 220px;
    }
}

@media (max-width: 992px) {
    .horizontal-scroll-container .collection-item {
        width: calc(33.333% - 1.33rem);
        min-width: 200px;
    }
}

@media (max-width: 768px) {
    .horizontal-scroll-container .collection-item {
        width: calc(50% - 1rem);
        min-width: 180px;
        max-width: 200px;
    }
}

@media (max-width: 576px) {
    .horizontal-scroll-container .collection-item {
        width: calc(100% - 1rem);
        max-width: 280px;
    }
}

.collection-item {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 2rem;
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    will-change: transform;
}

.collection-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover::before {
    transform: scaleX(1);
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: #f8fafc;
}

.collection-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
}

.collection-item a:hover {
    text-decoration: none;
    color: inherit;
}

.circle-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #ffffff;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    will-change: transform;
}

.circle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

/* Simplified background effect for circle images */
.circle-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: 1;
    opacity: 0.3;
    transition: opacity 0.3s ease;
    border-radius: 50%;
}

.collection-item:hover .circle-image {
    border-color: #3b82f6;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.collection-item:hover .circle-image::before {
    opacity: 0.5;
}

.collection-item:hover .circle-image img {
    transform: scale(1.05);
}

.collection-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3a8a;
    transition: color 0.3s ease;
}

.collection-item:hover h3 {
    color: #3b82f6;
}

.collection-item p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

/* Simple fade-in animation */
.collection-item {
    opacity: 0;
    animation: fadeIn 0.5s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Stagger animation for multiple items */
.collection-item:nth-child(1) { animation-delay: 0.1s; }
.collection-item:nth-child(2) { animation-delay: 0.15s; }
.collection-item:nth-child(3) { animation-delay: 0.2s; }
.collection-item:nth-child(4) { animation-delay: 0.25s; }
.collection-item:nth-child(5) { animation-delay: 0.3s; }

/* Responsive improvements */
@media (max-width: 768px) {
    .collection-item {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .circle-image {
        width: 120px;
        height: 120px;
        margin-bottom: 1.5rem;
    }
    
    .collection-item h3 {
        font-size: 1.2rem;
    }
    
    .collection-item p {
        font-size: 1rem;
    }
    
    .collection-item:hover {
        transform: translateY(-10px) scale(1.01);
    }
}

/* Featured Products Section */
.featured-products-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
}

/* Section titles */
.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Container spacing */
.container {
    position: relative;
}

/* Simple fade-in animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
}

/* Product items - exact same styling as blog-item */
.product-item,
.product-slide-item .product-item {
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light), 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.product-item:hover,
.product-slide-item .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium), 0 10px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.product-item a,
.product-slide-item .product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item img,
.product-slide-item .product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-item:hover img,
.product-slide-item .product-item:hover img {
    transform: scale(1.1);
}

.product-info,
.product-slide-item .product-info {
    padding: 1.5rem;
    background: var(--white-primary);
    border-radius: 0 0 16px 16px;
}

.product-info h5 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--navy-primary);
    line-height: 1.3;
}

.product-info .small {
    color: var(--gold-accent);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-primary);
}

/* Products Scroll Container */
.products-scroll-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    margin: 2rem 0;
    padding: 0 60px;
    width: 100%;
}

/* Enhanced shadow effect for product items */
.product-slide-item .product-item {
    box-shadow: 0 5px 20px var(--shadow-light), 0 2px 10px rgba(0, 0, 0, 0.05);
}

.product-slide-item .product-item:hover {
    box-shadow: 0 20px 40px var(--shadow-medium), 0 10px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.products-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    width: 100%;
    position: relative;
    min-width: 100%;
    box-sizing: border-box;
}

.products-scroll-container::-webkit-scrollbar {
    display: none;
}

.products-scroll-container .row {
    width: max-content;
    min-width: 100%;
    gap: 1.5rem;
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    padding: 0 1rem;
    box-sizing: border-box;
    min-width: calc(4 * 280px + 3 * 1.5rem);
}

.product-slide-item {
    width: 280px;
    padding: 0;
    flex: 0 0 280px;
    margin-right: 0;
    box-sizing: border-box;
}

/* Enhanced Product Slide Item Styling */
.product-slide-item .product-item {
    margin-bottom: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light), 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.product-slide-item .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium), 0 10px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.product-slide-item .product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.product-slide-item .product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.product-slide-item .product-info {
    padding: 1.5rem;
    background: var(--white-primary);
    border-radius: 0 0 16px 16px;
}

.product-slide-item .product-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: #1e3a8a;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.product-slide-item .product-info .small {
    color: #3b82f6;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

/* Product Scroll Arrows - Mobile only */
.product-scroll-left,
.product-scroll-right {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: var(--navy-primary);
    color: var(--white-primary);
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 5px 20px var(--shadow-medium);
}

/* Show mobile scroll arrows only on mobile devices */
@media (max-width: 767.98px) {
    .product-scroll-left,
    .product-scroll-right {
        display: flex !important;
        z-index: 9999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        position: absolute !important;
        width: 50px !important;
        height: 50px !important;
        background-color: var(--navy-primary) !important;
        color: var(--white-primary) !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        box-shadow: 0 5px 20px var(--shadow-medium) !important;
    }
}

/* Hide mobile scroll arrows on desktop */
@media (min-width: 768px) {
    .product-scroll-left,
    .product-scroll-right {
        display: none !important;
    }
}

.product-scroll-left:hover,
.product-scroll-right:hover {
    background-color: var(--gold-accent);
    color: var(--navy-primary);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.product-scroll-left:hover,
.product-scroll-right:hover {
    background-color: var(--gold-accent);
    color: var(--navy-primary);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
}

.product-scroll-left {
    left: 5px;
}

.product-scroll-right {
    right: 5px;
}

.product-scroll-left i,
.product-scroll-right i {
    font-size: 18px;
}

/* Brand Promise Section */
.brand-promise-section {
    padding: 6rem 0;
    background: var(--white-secondary);
}

.brand-image {
    border-radius: 16px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.brand-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-heavy);
}

.brand-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.brand-image .admin-edit-controls {
    position: absolute;
    bottom: 10px;
    right: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-image:hover .admin-edit-controls {
    opacity: 1;
}

.brand-text {
    padding: 2rem;
}

.brand-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--navy-primary);
}

.brand-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Blog Section */
.blog-section {
    padding: 6rem 0;
    background: var(--white-primary);
}

.blog-item {
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light), 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
}

.blog-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium), 0 10px 30px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

.blog-image {
    height: 250px;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.blog-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-item .blog-content {
    padding: 1.5rem;
    background: var(--white-primary);
    border-radius: 0 0 16px 16px;
}

.blog-item h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.8rem;
    color: var(--navy-primary);
    transition: color 0.3s ease;
    line-height: 1.3;
}

.blog-item:hover h3 {
    color: var(--gold-accent);
}

.blog-category {
    font-size: 0.9rem;
    color: var(--gold-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.blog-item p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.blog-item p:last-child {
    margin-bottom: 0;
}

/* Footer */
.footer-area {
    background: var(--navy-primary);
    color: var(--white-primary);
    padding: 4rem 0 2rem;
}

.footer-area h4 {
    color: var(--white-primary);
    margin-bottom: 1.5rem;
}

.footer-area p,
.footer-area a {
    color: var(--white-accent);
    transition: all 0.3s ease;
}

.footer-area a:hover {
    color: var(--gold-accent);
}

.footer-bottom {
    background: var(--navy-secondary);
    padding: 1.5rem 0;
    text-align: center;
    border-top: 1px solid var(--navy-light);
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--white-secondary);
    border-radius: 16px;
    margin-top: 3rem;
}

.contact-info {
    padding: 2rem 0;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-info i {
    color: var(--gold-accent);
    margin-right: 10px;
    font-size: 1.2rem;
}

.policy-group h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--navy-primary);
    margin-bottom: 1.5rem;
}

.policy-list {
    list-style: none;
    padding: 0;
}

.policy-list li {
    margin-bottom: 1rem;
}

.policy-list a {
    color: var(--text-light);
    font-size: 1rem;
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.policy-list a:hover {
    color: var(--gold-accent);
    text-decoration: none;
}

.policy-list a::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold-accent);
}

/* Carousel Customization */
.carousel-indicators {
    bottom: -40px;
    margin-bottom: 0;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--white-accent);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.carousel-indicators li.active {
    background-color: var(--gold-accent);
    transform: scale(1.2);
}

.carousel-indicators li:hover {
    background-color: var(--navy-light);
    transform: scale(1.1);
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: var(--navy-primary);
    border-radius: 50%;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--gold-accent);
    opacity: 1;
    transform: scale(1.1);
}

/* Featured Products Carousel Specific Controls */
.featured-carousel-control {
    width: 60px;
    height: 60px;
    background: var(--navy-primary);
    border-radius: 50%;
    opacity: 0.9;
    transition: all 0.3s ease;
    margin: 0 20px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000; /* Increased z-index */
    box-shadow: 0 5px 20px var(--shadow-medium);
    border: none;
    pointer-events: auto;
}

.featured-carousel-control:hover {
    background: var(--gold-accent);
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

.featured-carousel-control .carousel-control-prev-icon,
.featured-carousel-control .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Make icons white */
}

/* Position the desktop controls properly */
.featured-carousel-control.carousel-control-prev {
    left: -40px;
}

.featured-carousel-control.carousel-control-next {
    right: -40px;
}

/* Modal Styling */
.modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 20px 40px var(--shadow-heavy);
}

.modal-header {
    background: var(--navy-primary);
    color: var(--white-primary);
    border-radius: 16px 16px 0 0;
    border-bottom: none;
}

.modal-header .close {
    color: var(--white-primary);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.modal-header .close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
}

.form-control {
    border: 2px solid var(--white-accent);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--navy-primary);
    box-shadow: 0 0 0 0.2rem var(--shadow-light);
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Utility Classes */
.bg-navy { background-color: var(--navy-primary); }
.bg-navy-light { background-color: var(--navy-secondary); }
.bg-white { background-color: var(--white-primary); }
.bg-white-light { background-color: var(--white-secondary); }
.text-navy { color: var(--navy-primary); }
.text-gold { color: var(--gold-accent); }
.text-white { color: var(--white-primary); }

.shadow-light { box-shadow: 0 5px 20px var(--shadow-light); }
.shadow-medium { box-shadow: 0 10px 30px var(--shadow-medium); }
.shadow-heavy { box-shadow: 0 20px 40px var(--shadow-heavy); }

.rounded-xl { border-radius: 16px; }
.rounded-2xl { border-radius: 20px; }

/* Hover Effects */
.product-item:hover .product-info h5,
.blog-item:hover .blog-title,
.product-slide-item:hover .product-info h5 {
    color: var(--gold-accent) !important;
}

.product-slide-item:hover .product-info .small {
    color: var(--navy-primary) !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Enhanced focus states */
.btn-luxury:focus,
.form-control:focus {
    outline: none;
    box-shadow: 0 0 0 3px var(--shadow-light);
}

/* Global Product Image Handling - Simplified */
.product-item img,
.product-slide-item .product-item img {
    object-fit: cover;
    transition: all 0.5s ease;
}

/* Brand and category images */
.brand-image img,
.circle-image img {
    object-fit: contain;
    background-color: transparent;
}

/* Loading Animation */
.loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--white-accent);
    border-top: 4px solid var(--navy-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .btn-luxury {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .product-item img {
        height: 250px;
    }
    
    .circle-image {
        width: 100px;
        height: 100px;
    }
    
    /* Mobile carousel adjustments */
    .products-scroll-wrapper {
        padding: 0 40px;
    }
    
    .product-slide-item {
        width: 250px;
        flex: 0 0 250px;
        margin-right: 0;
    }
    
    .product-slide-item .product-item img {
        height: 220px;
    }
    
    .products-scroll-container .row {
        min-width: calc(4 * 250px + 3 * 1rem);
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .product-scroll-left,
    .product-scroll-right {
        width: 40px;
        height: 40px;
    }
    
    .product-scroll-left i,
    .product-scroll-right i {
        font-size: 16px;
    }
    
    /* Mobile carousel indicators */
    .carousel-indicators {
        bottom: -30px;
    }
    
    .carousel-indicators li {
        width: 10px;
        height: 10px;
        margin: 0 3px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .collection-item {
        padding: 1.5rem;
    }
}

/* Desktop view: ensure carousel works properly */
@media (min-width: 768px) {
    .products-scroll-container {
        overflow-x: visible;
    }
    
    .products-scroll-container .row {
        width: 100%;
        min-width: 100%;
        gap: 1.5rem;
        display: flex;
        flex-wrap: nowrap;
        padding: 0;
        justify-content: space-between;
    }
    
    .product-slide-item {
        width: calc(25% - 1.125rem); /* 4 products with gaps */
        flex: 0 0 calc(25% - 1.125rem);
        margin-right: 0;
    }
    
    /* Hide scroll arrows on desktop since we have carousel controls */
    .product-scroll-left,
    .product-scroll-right {
        display: none;
    }
    
    /* Desktop carousel controls positioning */
    .featured-carousel-control {
        margin: 0;
    }
    
    .featured-carousel-control.carousel-control-prev {
        left: -50px;
    }
    
    .featured-carousel-control.carousel-control-next {
        right: -50px;
    }
}

@media (max-width: 576px) {
    .product-slide-item {
        width: 280px;
        flex: 0 0 280px;
        margin-right: 1rem;
    }
    
    .product-slide-item .product-item img {
        height: 280px;
    }
    
    .product-slide-item .product-item {
        min-height: 420px;
    }
    
    .product-slide-item .product-info h5 {
        font-size: 1.1rem;
        -webkit-line-clamp: 2;
    }
    
    .product-slide-item .product-info {
        padding: 1.5rem 1rem;
        min-height: 140px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        margin-top: 60px;
    }
}

/* Featured Products Section Specific Styling */
.featured-products-section {
    padding: 4rem 0;
    background: #ffffff;
    position: relative;
    overflow: visible;
}

.featured-products-section .carousel {
    margin-bottom: 3rem;
    position: relative;
    padding: 0 60px; /* Reduced padding to fit 3 products */
    overflow: visible;
    width: 100%;
    box-sizing: border-box;
}

/* Mobile carousel adjustments */
@media (max-width: 767.98px) {
    .featured-products-section .carousel {
        padding: 0 20px; /* Less padding on mobile */
    }
}

.featured-products-section .carousel-inner {
    border-radius: 16px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.featured-products-section .carousel-item {
    padding: 1rem 0;
    overflow: visible;
    width: 100%;
}

/* Large screen adjustments */
@media (min-width: 1200px) {
    .featured-carousel-control.carousel-control-prev {
        left: -70px;
    }
    
    .featured-carousel-control.carousel-control-next {
        right: -70px;
    }
    
    .featured-products-section .carousel {
        padding: 0 80px;
    }
    
    .product-slide-item {
        width: 280px;
        flex: 0 0 280px;
        margin-right: 0.5rem;
    }
}

/* Ensure carousel controls are visible on desktop only */
.featured-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: #1e3a8a;
    border: none;
    border-radius: 50%;
    display: none; /* Hidden by default */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

/* Show carousel controls only on desktop */
@media (min-width: 768px) {
    .featured-carousel-control {
        display: flex !important;
    }
}

/* Hide carousel controls on mobile */
@media (max-width: 767.98px) {
    .featured-carousel-control,
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
    }
}

/* Carousel indicators styling */
.carousel-indicators {
    bottom: -40px;
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #d1d5db;
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.carousel-indicators li.active {
    background-color: #1e3a8a;
    transform: scale(1.2);
}

.featured-carousel-control:hover {
    background-color: #3b82f6;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Ensure controls are above everything on desktop only */
@media (min-width: 768px) {
    .featured-carousel-control.carousel-control-prev,
    .featured-carousel-control.carousel-control-next {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        z-index: 9999 !important;
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
}

/* Completely hide controls on mobile */
@media (max-width: 767.98px) {
    .featured-carousel-control.carousel-control-prev,
    .featured-carousel-control.carousel-control-next {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        position: absolute !important;
        left: -9999px !important;
        top: -9999px !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        z-index: -1 !important;
    }
}

.featured-carousel-control .carousel-control-prev-icon,
.featured-carousel-control .carousel-control-next-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Medium screen adjustments */
@media (min-width: 768px) and (max-width: 1199px) {
    .featured-products-section .carousel {
        padding: 0 50px;
    }
    
    .product-slide-item {
        width: 260px;
        flex: 0 0 260px;
        margin-right: 0.5rem;
    }
    
    .product-slide-item .product-item img {
        height: 260px;
    }
    
    .product-slide-item .product-item {
        min-height: 420px;
    }
}

/* Blurred background effect for shop page product images */
.single-product-wrapper .product-img {
    position: relative;
    overflow: hidden;
}

.single-product-wrapper .product-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(25px) brightness(1.2);
    transform: scale(1.2);
    z-index: 1;
    opacity: 0.6;
    transition: all 0.5s ease;
}

.single-product-wrapper .product-img img {
    position: relative;
    z-index: 2;
}

.single-product-wrapper:hover .product-img::before {
    opacity: 0.8;
    filter: blur(20px) brightness(1.4);
}

/* Additional fixes for product carousel images */
.product-slide-item .product-item a {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.product-slide-item .product-item img {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    background-color: transparent !important;
    transition: all 0.5s ease;
    display: block !important;
    max-width: 100%;
    max-height: 280px;
}

/* Ensure product images don't get distorted */
.product-slide-item .product-item img.img-fluid {
    width: 100% !important;
    height: 280px !important;
    object-fit: cover !important;
    object-position: center !important;
    background-color: transparent !important;
    display: block !important;
}

/* Mobile responsive fixes */
@media (max-width: 767px) {
    .product-slide-item .product-item img {
        height: 220px !important;
    }
    
    .product-slide-item .product-item img.img-fluid {
        height: 220px !important;
    }
}

/* Desktop grid fixes */
@media (min-width: 768px) {
    .product-slide-item .product-item {
        min-height: 420px;
    }
    
    .product-slide-item .product-item img {
        height: 280px !important;
    }
}

/* Shop Page Specific Styling */
.shop_grid_product_area .single-product-wrapper .product-img {
    position: relative;
    overflow: hidden;
    background-color: transparent;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 16px 0 0;
}

.shop_grid_product_area .single-product-wrapper .product-img img {
    width: 100% !important;
    height: 300px !important;
    object-fit: cover !important;
    object-position: center !important;
    background-color: transparent !important;
    transition: all 0.5s ease;
    display: block !important;
    border-radius: 16px 16px 0 0;
}

.shop_grid_product_area .single-product-wrapper:hover .product-img img {
    transform: scale(1.05);
}

/* Shop page mobile responsive */
@media (max-width: 767px) {
    .shop_grid_product_area .single-product-wrapper .product-img {
        height: 250px;
    }
    
    .shop_grid_product_area .single-product-wrapper .product-img img {
        height: 250px !important;
    }
}

/* Shop page desktop improvements */
@media (min-width: 768px) {
    .shop_grid_product_area .single-product-wrapper .product-img {
        height: 320px;
    }
    
    .shop_grid_product_area .single-product-wrapper .product-img img {
        height: 320px !important;
    }
}

/* Ensure shop grid layout is consistent */
.shop_grid_product_area .row {
    margin: 0 -15px;
}

.shop_grid_product_area .col-12,
.shop_grid_product_area .col-md-6,
.shop_grid_product_area .col-lg-4,
.shop_grid_product_area .col-xl-3 {
    padding: 0 15px;
    margin-bottom: 30px;
}

/* Product items - exact same styling as blog-item */
.product-item,
.product-slide-item .product-item {
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    background: var(--white-primary);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-light);
}

.product-item:hover,
.product-slide-item .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.product-item a,
.product-slide-item .product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-item img,
.product-slide-item .product-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.product-item:hover img,
.product-slide-item .product-item:hover img {
    transform: scale(1.1);
}

.product-info,
.product-slide-item .product-info {
    padding: 1.5rem;
}



.shop_grid_product_area .single-product-wrapper {
    background: var(--white-primary);
    border-radius: 16px;
    box-shadow: 0 5px 20px var(--shadow-light);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.shop_grid_product_area .single-product-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}
