/* ===== CSS Variables ===== */
:root {
    --primary-color: #8B4513;
    --secondary-color: #D4AF37;
    --accent-color: #CD853F;
    --dark-color: #2C1810;
    --light-color: #F5F5DC;
    --white: #FFFFFF;
    --gray: #6B7280;
    --light-gray: #F3F4F6;
    --border-color: #E5E7EB;
    
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-image {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo h1 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.tagline {
    font-size: 11px;
    color: var(--secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 2px;
}

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--dark-color);
    position: relative;
    transition: var(--transition);
}

.icon-btn:hover {
    background: var(--light-gray);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--dark-color);
    transition: var(--transition);
    border-radius: 2px;
}

/* ===== Hero Slider ===== */
.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 70px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    font-weight: 600;
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
}

.slide-text {
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
}

.slide-label {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 56px;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.slide-description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    opacity: 0.95;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--dark-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark-color);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 10px 24px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--dark-color);
}

.btn-light:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
    color: var(--dark-color);
}

.slider-btn:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-xl);
}

.slider-btn.prev {
    left: 30px;
}

.slider-btn.next {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--secondary-color);
    width: 30px;
    border-radius: 6px;
}

/* ===== Features ===== */
.features {
  padding: 80px 0;
}

.feature-card {
  position: relative;
  height: 350px;
  min-height: 300px; /* ensures height is never 0 */
}

.feature-icon,
.feature-icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature-card {
  position: relative;
  overflow: hidden;
  height: 350px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  background: none;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

/* ensure image always fills */
.feature-icon {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* gradient overlay */
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

.feature-card h3,
.feature-card p {
  position: absolute;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 20px;
  width: 100%;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.feature-card h3 {
  bottom: 60px;
  font-size: 22px;
  font-weight: 600;
}

.feature-card p {
  bottom: 20px;
  font-size: 15px;
  line-height: 1.5;
}

/* === Mobile view fix === */
@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    height: 300px !important; /* force it for mobile */
    min-height: 300px;
  }

  .feature-icon {
    inset: 0;
  }

  .feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .feature-card h3 {
    bottom: 55px;
    font-size: 18px;
  }

  .feature-card p {
    bottom: 15px;
    font-size: 13px;
    width: 90%;
  }
}

/* ===== Parallax Sections ===== */
.parallax-section {
    position: relative;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.02) 0%, rgba(212, 175, 55, 0.02) 100%);
    pointer-events: none;
}

/* ===== Categories ===== */
.categories {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
}

/* Shop Search Bar */
.shop-search {
    max-width: 600px;
    margin: 0 auto 40px;
    display: flex;
    gap: 10px;
    padding: 0 20px;
}

.search-input-field {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    outline: none;
    transition: var(--transition);
}

.search-input-field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

.search-submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
}

.search-submit svg {
    width: 18px;
    height: 18px;
}

.search-wrapper {
    position: relative;
    flex: 1;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 2px solid var(--border-color);
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 300px;
    overflow-y: auto;
    display: none;
    z-index: 100;
    box-shadow: var(--shadow-lg);
}

.search-suggestions.active {
    display: block;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: var(--light-gray);
    color: var(--primary-color);
}

.suggestion-icon {
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.suggestion-text {
    flex: 1;
}

.suggestion-name {
    font-weight: 600;
    font-size: 14px;
    color: var(--dark-color);
}

.suggestion-category {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

.suggestion-item mark {
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 2px 4px;
    border-radius: 3px;
    font-weight: 600;
}

.no-results {
    padding: 20px;
    text-align: center;
    color: var(--gray);
    font-size: 14px;
}

@media (max-width: 768px) {
    .search-suggestions {
        max-height: 250px;
    }
    
    .suggestion-item {
        padding: 10px 15px;
    }
    
    .suggestion-icon {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

.category-filters,
.brand-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 25px;
    border: 2px solid var(--border-color);
    color: var(--dark-color);
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.category-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: scaleIn 0.6s ease-out;
}

.category-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.category-image {
    height: 250px;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--border-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--gray);
    font-weight: 600;
    text-align: center;
    padding: 20px;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Change from cover to contain */
    object-position: center;
}

.category-info {
    padding: 25px;
    text-align: center;
}

.category-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--dark-color);
}

.category-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

/* ===== Buying Guides ===== */
.buying-guides {
    padding: 80px 0;
    background: var(--light-color);
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.guide-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: var(--transition);
}

.guide-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-xl);
}

.guide-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.guide-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    transition: var(--transition);
}

.guide-card:hover .guide-overlay {
    padding-bottom: 40px;
}

.guide-overlay h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.guide-label {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ===== Guide Modal ===== */
.guide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.guide-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.guide-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.guide-modal .modal-container {
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 85vh;
    background: var(--white);
    border-radius: 16px;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease;
}

.guide-modal .modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.guide-modal .modal-close-btn:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.guide-modal-header {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.guide-modal-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-modal-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.guide-modal-title {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    color: var(--white);
}

.guide-modal-title h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 10px;
}

.guide-modal-title .guide-label {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--dark-color);
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.guide-modal-content {
    padding: 40px;
}

.guide-section {
    margin-bottom: 35px;
}

.guide-section h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.guide-section p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 12px;
}

.guide-section ul {
    list-style: none;
    padding: 0;
}

.guide-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--gray);
    line-height: 1.7;
}

.guide-section ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.guide-tips {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    margin: 25px 0;
}

.guide-tips h4 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-tips h4::before {
    content: '💡';
    font-size: 24px;
}

.guide-tips p {
    color: var(--dark-color);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .guide-modal-header {
        height: 200px;
    }
    
    .guide-modal-title {
        left: 25px;
        bottom: 20px;
    }
    
    .guide-modal-title h2 {
        font-size: 24px;
    }
    
    .guide-modal-content {
        padding: 25px 20px;
    }
    
    .guide-section h3 {
        font-size: 19px;
    }
    
    .guide-section p,
    .guide-section ul li {
        font-size: 14px;
    }
    
    .guide-tips {
        padding: 20px;
    }
    
    .guide-tips h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .guide-modal .modal-container {
        width: 95%;
        max-height: 90vh;
    }
    
    .guide-modal-header {
        height: 180px;
    }
    
    .guide-modal-title {
        left: 20px;
        bottom: 15px;
    }
    
    .guide-modal-title h2 {
        font-size: 20px;
    }
    
    .guide-modal-content {
        padding: 20px 15px;
    }
    
    .guide-section {
        margin-bottom: 25px;
    }
    
    .guide-section h3 {
        font-size: 17px;
        margin-bottom: 12px;
    }
}

/* ===== Collections ===== */
.collections {
    padding: 80px 0;
}

.collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
}

.collection-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.collection-image {
    height: 350px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.collection-info {
    padding: 35px;
}

.collection-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.collection-info p {
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

/* ===== Offers ===== */
.offers {
    padding: 80px 0;
    background: var(--light-gray);
}

.luxury-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
    align-items: center;
}

.luxury-content {
    padding: 50px;
    color: var(--white);
}

.luxury-content h3 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.luxury-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.7;
}

.luxury-image {
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

/* ===== Brands ===== */
.brands {
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.brand-card {
    position: relative;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.brand-card:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.brand-image {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
}

.brand-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--white);
    text-align: center;
    transform: translateY(20px);
    transition: var(--transition);
}

.brand-card:hover .brand-overlay {
    transform: translateY(0);
}

.brand-overlay h4 {
    font-size: 22px;
    margin-bottom: 10px;
}

.brand-overlay p {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 600;
}

/* ===== Promo Banner ===== */
.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.promo-card {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.promo-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

.promo-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.promo-card p {
    color: var(--gray);
    margin-bottom: 25px;
}

/* ===== About Section ===== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--dark-color);
}

.about-text p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
    transition: var(--transition);
}

.stat:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.stat h3 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat:hover h3 {
    color: var(--white);
}

.stat p {
    font-size: 14px;
    color: var(--gray);
}

.stat:hover p {
    color: var(--white);
}

.about-image {
    height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-xl);
}

/* ===== review Section ===== */
.reviews {
    padding: 80px 0;
    background: var(--light-gray);
}

.reviews-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    min-height: 250px;
}

.review-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    pointer-events: none;
}

.review-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.review-content {
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.stars {
    color: var(--secondary-color);
    font-size: 28px;
    margin-bottom: 20px;
}

.review-text {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.reviewer-name {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.reviewer-location {
    font-size: 14px;
    color: var(--gray);
}

.review-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .review-content {
        padding: 35px 25px;
    }
    .review-text {
        font-size: 16px;
    }
}

.contact-form-col {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 12px;
    transition: var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.contact-form button {
    width: 100%;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .contact-form-col {
        grid-column: span 1;
    }
}
/* ===== Newsletter ===== */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-family: var(--font-heading);
    font-size: 38px;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 16px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    outline: none;
}

.newsletter-form button {
    padding: 16px 40px;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3,
.footer-col h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: var(--secondary-color);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--secondary-color);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: block;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.contact-info svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

/* Product Modal */
.product-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    max-width: 900px;
    width: 90%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition);
}

.modal-close-btn:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.modal-image {
    background: var(--light-gray);
    height: 100%;
    min-height: 400px;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.modal-details h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.modal-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.modal-description {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 16px 32px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .modal-body {
        grid-template-columns: 1fr;
    }
    
    .modal-image {
        min-height: 300px;
    }
    
    .modal-details {
        padding: 30px 25px;
    }
    
    .modal-details h2 {
        font-size: 24px;
    }
    
    .modal-price {
        font-size: 22px;
    }
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 9999;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        display: flex;
        flex-direction: column;
        padding: 100px 0 40px;
        gap: 0;
    }
    
    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-link {
        display: block;
        padding: 20px 30px;
        font-size: 18px;
        width: 100%;
        color: var(--dark-color);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: var(--light-gray);
        color: var(--primary-color);
    }
    
    .nav::before {
        content: 'Menu';
        position: absolute;
        top: 30px;
        left: 30px;
        font-size: 24px;
        font-weight: 700;
        color: var(--primary-color);
        font-family: var(--font-heading);
    }
    
    .nav::after {
        content: '';
        position: absolute;
        top: 75px;
        left: 30px;
        right: 30px;
        height: 2px;
        background: var(--secondary-color);
    }
    
    /* Mobile Menu Overlay */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        animation: fadeIn 0.3s ease;
    }
    
    .menu-toggle {
        display: flex;
        z-index: 10000;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .collections-grid {
        grid-template-columns: 1fr;
    }
    
    .luxury-banner {
        grid-template-columns: 1fr;
    }
    
    .luxury-image {
        min-height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


@media (max-width: 768px) {
    .slide-title {
        font-size: 36px;
    }
    
    .slide-description {
        font-size: 16px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .slider-btn.prev {
        left: 15px;
    }
    
    .slider-btn.next {
        right: 15px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .category-grid,
    .guides-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .luxury-content {
        padding: 30px;
    }
    
    .luxury-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 22px;
    }
    
    .hero-slider {
        height: 70vh;
    }
    
    .slide-title {
        font-size: 28px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-title {
        font-size: 26px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .category-grid,
    .guides-grid,
    .offers-grid,
    .brands-grid {
        grid-template-columns: 1fr;
    }
    
    .collection-info h3 {
        font-size: 22px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .newsletter-content h2 {
        font-size: 28px;
    }
    
    .promo-card {
        padding: 30px 20px;
    }
    
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* ===== Utility Classes ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 1s ease-in;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

.scale-in {
    animation: scaleIn 0.6s ease-out;
}

/* ===== Loading States ===== */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin: -20px 0 0 -20px;
    border: 4px solid var(--light-gray);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-color);
}

/* ===== Selection ===== */
::selection {
    background: var(--secondary-color);
    color: var(--dark-color);
}

/* ===== Focus Styles ===== */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}

/* ===== Promo Banner ===== */
.promo-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

/* ===== Mobile Responsive Fixes ===== */

/* Fix for slide background images on mobile */
@media (max-width: 768px) {
    .slide-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .hero-slider {
        height: 70vh;
        margin-top: 60px;
    }
    
    /* Reduce header button sizes */
    .icon-btn {
        width: 35px;
        height: 35px;
    }
    
    .menu-toggle {
        width: 25px;
    }
    
    .menu-toggle span {
        height: 2px;
    }
    
    /* Smaller slide content */
    .slide-text {
        padding: 0 10px;
    }
    
    .slide-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .slide-description {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .slide-label {
        padding: 6px 16px;
        font-size: 11px;
        margin-bottom: 15px;
    }
    
    /* Smaller buttons throughout */
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .slide-buttons {
        gap: 10px;
    }
    
    /* Shop search bar fixes */
    .shop-search {
        flex-direction: column;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .search-input-field {
        width: 100%;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .search-submit {
        width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .search-submit svg {
        width: 16px;
        height: 16px;
    }
    
    /* Category filters */
    .category-filters,
    .brand-filters {
        padding: 0 15px;
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Slider buttons */
    .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .slider-btn.prev {
        left: 10px;
    }
    
    .slider-btn.next {
        right: 10px;
    }
    
    .slider-btn svg {
        width: 18px;
        height: 18px;
    }
    
    /* Slider dots */
    .slider-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .dot {
        width: 8px;
        height: 8px;
    }
    
    .dot.active {
        width: 20px;
    }
    
    /* Section spacing */
    .features,
    .categories,
    .buying-guides,
    .collections,
    .offers,
    .brands,
    .about {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .section-subtitle {
        font-size: 14px;
    }
    
    /* Feature cards */
    .feature-card {
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .feature-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .feature-card h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .feature-card p {
        font-size: 13px;
    }
    
    /* Category items */
    .category-info {
        padding: 20px;
    }
    
    .category-info h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .category-info p {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .btn-outline {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    /* Offer cards */
    .offer-badge {
        padding: 6px 12px;
        font-size: 12px;
        top: 10px;
        right: 10px;
    }
    
    .offer-info {
        padding: 15px;
    }
    
    .offer-info h4 {
        font-size: 15px;
        min-height: auto;
        margin-bottom: 8px;
    }
    
    .current-price {
        font-size: 20px;
    }
    
    .original-price {
        font-size: 14px;
    }
    
    /* Luxury banner */
    .luxury-content {
        padding: 25px 20px;
    }
    
    .luxury-content h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .luxury-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    /* Brand cards */
    .brand-card {
        height: 250px;
    }
    
    .brand-overlay {
        padding: 20px;
    }
    
    .brand-overlay h4 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .brand-overlay p {
        font-size: 13px;
    }
    
    /* About section */
    .about-text h2 {
        font-size: 26px;
        margin-bottom: 20px;
    }
    
    .about-text p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .about-image {
        height: 300px;
    }
    
    .stat {
        padding: 20px;
    }
    
    .stat h3 {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .stat p {
        font-size: 13px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        margin-bottom: 30px;
    }
    
    .footer-col h3,
    .footer-col h4 {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .footer-col p {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .social-links a {
        width: 35px;
        height: 35px;
    }
    
    .social-links a svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 14px;
    }
    
    .contact-info li {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .contact-info svg {
        width: 18px;
        height: 18px;
    }
    
    .footer-bottom {
        padding: 20px 0;
    }
    
    .footer-bottom p,
    .footer-links a {
        font-size: 13px;
    }
    
    .footer-links {
        gap: 15px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        margin-top: 55px;
    }
    
    .header {
        padding: 0;
    }
    
    .nav-wrapper {
        padding: 10px 0;
    }
    
    .logo h1 {
        font-size: 20px;
    }
    
    .tagline {
        font-size: 9px;
        letter-spacing: 1px;
    }
    
    .icon-btn {
        width: 32px;
        height: 32px;
    }
    
    .icon-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .cart-count {
        width: 16px;
        height: 16px;
        font-size: 10px;
    }
    
    .slide-title {
        font-size: 26px;
        margin-bottom: 12px;
    }
    
    .slide-description {
        font-size: 13px;
        margin-bottom: 18px;
    }
    
    .slide-label {
        padding: 5px 14px;
        font-size: 10px;
        margin-bottom: 12px;
    }
    
    .btn {
        padding: 10px 18px;
        font-size: 12px;
        width: 100%;
    }
    
    .slide-buttons {
        width: 100%;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 13px;
    }
    
    .shop-search {
        padding: 0 10px;
        gap: 8px;
    }
    
    .search-input-field {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .search-submit {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .category-filters,
    .brand-filters {
        padding: 0 10px;
        gap: 8px;
    }
    
    .filter-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
    
    .slider-btn {
        width: 30px;
        height: 30px;
    }
    
    .slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .slider-btn.prev {
        left: 8px;
    }
    
    .slider-btn.next {
        right: 8px;
    }
    
    .features,
    .categories,
    .buying-guides,
    .collections,
    .offers,
    .brands,
    .about {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .feature-card {
        padding: 25px 15px;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon svg {
        width: 24px;
        height: 24px;
    }
    
    .feature-card h3 {
        font-size: 16px;
    }
    
    .feature-card p {
        font-size: 12px;
    }
    
    .category-grid,
    .guides-grid,
    .offers-grid,
    .brands-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .category-image {
        height: 200px;
        font-size: 13px;
    }
    
    .category-info {
        padding: 18px;
    }
    
    .category-info h3 {
        font-size: 17px;
    }
    
    .guide-card {
        height: 280px;
    }
    
    .guide-overlay {
        padding: 20px;
    }
    
    .guide-overlay h3 {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .guide-label {
        padding: 4px 12px;
        font-size: 11px;
    }
    
    .collection-image {
        height: 280px;
    }
    
    .collection-info {
        padding: 25px 20px;
    }
    
    .collection-info h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .collection-info p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .offer-image {
        height: 200px;
    }
    
    .luxury-content {
        padding: 20px 15px;
    }
    
    .luxury-content h3 {
        font-size: 22px;
    }
    
    .luxury-content p {
        font-size: 13px;
    }
    
    .luxury-image {
        min-height: 250px;
    }
    
    .brand-card {
        height: 220px;
    }
    
    .about-text h2 {
        font-size: 24px;
    }
    
    .about-text p {
        font-size: 13px;
    }
    
    .about-image {
        height: 250px;
    }
    
    .footer-col h3,
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 18px;
    }
    
    .footer-col p {
        font-size: 13px;
    }
    
    .social-links {
        gap: 12px;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
    }
    
    .social-links a svg {
        width: 16px;
        height: 16px;
    }
    
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-top svg {
        width: 20px;
        height: 20px;
    }
}

/* Ensure images fill container properly */
.slide-bg img,
.guide-image img,
.collection-image img,
.offer-image img,
.brand-image img,
.luxury-image img,
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;  /* Products show full image */
    object-position: center;
}

/* Container adjustments for mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}