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

/* guide */
/* ----- 0 General Styles------
0.1  Root colors         [74-218]
0.2  general


1 Header & Navbar -----
1.1  Header Styles       [222-272]
1.2  Navbar Styles       [272-390]
1.3  Navbar Styles       [272-390]
1.4  Mobile Nav Styles   [392-414]
=========================home page css=========================
2 Home / Hero Section------
2.1  Hero Styles         [421-518]

3 Features Section------ [522-557]
3.1  Features Styles

4 Products Section------ [562-557]
4.1  Products Styles
4.2  Product HoverEffects[606-640]
4.4  Product Details     [654-681]
4.5  Add to Cart Button  [750-780]
4.3  Notification Toast  [674-694]

5 Banners Section-------
5.1  Banners Styles


/* ---------------- General Styles ---------------- */




@keyframes smoothReveal {
    0%, 100% { opacity: 0.1; transform: translateY(5px); }
    50% { opacity: 1; transform: translateY(0); }
}

#preloader.hidden {
    opacity: 0;
    transform: scale(1.1); /* Subtle zoom out effect for smoothness */
    visibility: hidden;
}



:root {
  /* Luxury Midnight Gold Identity - Refined */
  --primary-color: #B38B4D;
  --primary-light: #d4ae73;
  --secondary-color: #0a0a0a; /* Deeper black */
  --bg-color: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(255, 255, 255, 0.2);
  --text-main: #2c2c2c;
  --text-muted: #666666;
  --border-ultra-light: rgba(0, 0, 0, 0.05);

  --transition-smooth: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-premium: 0 20px 50px rgba(0, 0, 0, 0.05);
  --header-height: 80px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-color);
}

::selection {
    background: var(--primary-color);
    color: #fff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, .logo-text {
  font-family: "Playfair Display", serif;
  letter-spacing: 1px;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
}

/* Global Styles */
h1 {
  font-size: 50px;
  line-height: 64px;
  color: var(--heading-color);
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: var(--heading-color);
}

h4 {
  font-size: 20px;
  color: var(--heading-color);
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: var(--text-color);
  margin: 15px 0 20px 0;
}

a {
  text-decoration: none;
  color: var(--heading-color); /* Default to dark, white overridden locally */
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  image-rendering: -webkit-optimize-contrast; /* Sharper imagery for luxury feel */
}


.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
}

button.normal:hover {
    background-color: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
}

button.white,
.button-white {
  font-size: 13px;
  font-weight: 600;
  padding: 11px 18px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: var(--transition-smooth);
}

button.white:hover,
.button-white:hover {
    background-color: #fff;
    color: #000;
}


/* ------------ Header & Navbar ------------- */
.site-header {
  height: var(--header-height);
  background: transparent;
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  padding: 0 60px;
}


.site-header.scrolled,
body:not(.has-hero) .site-header {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .nav-link,
body:not(.has-hero) .site-header .nav-link {
    color: var(--secondary-color);
}

.site-header.scrolled .logo,
body:not(.has-hero) .site-header .logo {
    color: var(--secondary-color);
    font-size: 26px;
}

.site-header.scrolled .icon-link,
body:not(.has-hero) .site-header .icon-link {
    color: var(--secondary-color);
}

/* Header Inner Container - Three Column Layout */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

/* Three Column Layout */
.nav-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.nav-left .nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-center {
    flex: 0 0 auto;
    text-align: center;
    padding: 0 40px;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 30px;
}

.nav-secondary {
    display: flex;
    gap: 20px;
}

.nav-link {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link i {
    font-size: 8px;
    opacity: 0.7;
}

.site-header.scrolled .nav-link {
    color: var(--secondary-color);
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-badge {
    background: #ff4d4d;
    color: #fff;
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 2px;
    margin-left: 5px;
    font-weight: 700;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.5s ease;
}

.site-header.scrolled .logo {
    color: var(--secondary-color);
    font-size: 26px;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-link {
    color: #fff;
    font-size: 16px;
    position: relative;
    transition: all 0.4s ease;
}

.site-header.scrolled .icon-link {
    color: var(--secondary-color);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--secondary-color);
    color: #fff;
    font-size: 9px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header.scrolled .cart-badge {
    background: var(--primary-color);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: #fff;
    transition: var(--transition-smooth);
}

.site-header.scrolled .nav-toggle .bar,
body:not(.has-hero) .site-header .nav-toggle .bar {
    background-color: var(--secondary-color);
}

/* ------------ end  of Header & Navbar ------------- */


/* ---------------- Home / Hero Section ---------------- */
.hero {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: top;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: #fff;
    padding: 0 20px;
}

.hero-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 85px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px 40px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
}

.btn-ghost:hover {
    background: #fff;
    color: #000;
}



/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
/* ---------------- end of Home / Hero Section ---------------- */


/* ---------------- Features Section ---------------- */
.features {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 80px;
}

.fe-box {
  width: 180px;
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border-radius: 4px; /* More sophisticated square-ish corners */
  margin: 15px 0;
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

.fe-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.fe-box h6 {
  font-family: "Playfair Display", serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--secondary-color);
}
/* ---------------- end of Features Section ---------------- */



/* ---------------- Products Section ---------------- */
.headline-label {
    text-align: center;
    margin: 80px 0 40px;
}

.headline-label h2 {
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.headline-label p {
    color: var(--primary-color);
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 13px;
}

.products-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  padding: 0 80px;
  margin-bottom: 80px;
}

.pro {
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.03);
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  padding-bottom: 20px;
}

.pro:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* Image Container with Hover Zoom & Swap */
.pro-img-wrapper {
  width: 100%;
  height: 440px;
  overflow: hidden;
  position: relative;
  background: #f8f8f8;
}

.pro-img-primary,
.pro-img-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.8s ease, transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: absolute;
  top: 0;
  left: 0;
}

.pro-img-secondary {
    opacity: 0;
}

.pro:hover .pro-img-primary {
    opacity: 0;
}

.pro:hover .pro-img-secondary {
    opacity: 1;
    transform: scale(1.05);
}

.pro:hover .pro-img-primary {
    transform: scale(1.05);
}

/* Modern Details */
.pro .description {
    padding: 20px 0 10px;
    text-align: left;
}

.pro .description span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    font-weight: 500;
}

.pro .description h5 {
    font-size: 15px;
    color: var(--secondary-color);
    margin: 8px 0;
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

.pro .description h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: "Inter", sans-serif;
}


/* Notification Toast */
.velora-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--secondary-color);
    color: #fff;
    padding: 18px 30px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.velora-notification.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .velora-notification {
        bottom: 20px;
        right: 20px;
        left: 20px;
        text-align: center;
    }
}

.pro .description {
  text-align: center;
  padding: 20px 15px 10px;
}

.pro .description span {
  color: #888;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.pro .description h5 {
  color: var(--secondary-color);
  font-size: 16px;
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pro .stars {
    margin-bottom: 12px;
}

.pro .description i {
  font-size: 10px;
  color: var(--primary-color);
  margin: 0 1px;
}

.pro .description h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

/* Refined Add to Cart Button */
.pro .pro-cart {
  width: 100%;
  height: 3vh;
  background-color: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  border-top: 1px solid rgba(0,0,0,0.05);
  position: absolute;
  bottom: -50px; /* Hide by default */
}

.pro:hover .pro-cart {
    bottom: 0;
}

.pro .pro-cart:hover {
    background-color: var(--primary-color);
}

.pro .pro-cart i {
    font-size: 14px;
}

/* ---------------- end of Products Section ---------------- */

/* ---------------- Banners ---------------- */
.banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?auto=format&fit=crop&q=80&w=2070");
  width: 100%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  margin: 60px 0;
  border-radius: 4px;
  border: 1px solid rgba(197, 157, 95, 0.2); /* Subtle Gold border */
}

.banner h4 {
  color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.banner h2 {
  color: #fff;
  font-size: 42px;
  padding: 10px 0;
  font-weight: 700;
  max-width: 800px;
}

.banner h2 span {
  color: var(--primary-color); /* Luxury Gold instead of red */
  font-style: italic;
}

.banner button {
  margin-top: 42px;
  background-color: #fff;
  color: var(--secondary-color);
  border: none;
  padding: 15px 40px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  border-radius: 4px;
  transition: 
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s ease,
    background-color 0.35s ease,
    color 0.35s ease;
}

.banner button:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-6px) scale(1.03);
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth) ;

}

/* Side Banners */
.banners-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px 80px;
}

.banner-bx {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("https://images.unsplash.com/photo-1539109136881-3be0616acf4b?auto=format&fit=crop&q=80&w=1887");
  min-width: 48%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 4px;
}

#banner-bx2 {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("https://images.unsplash.com/photo-1445205170230-053b83016050?auto=format&fit=crop&q=80&w=2071");
}

.banner-bx h4 {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
}

.banner-bx h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

.banner-bx span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

.banner-bx:hover button {
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}

/* 3 Mini Banners */
.mini-banner-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

.mini-banner {
width: 49%;
}


.mini-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("https://images.unsplash.com/photo-1510965168540-03ea63c46e22?w=500&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8MTUwfHxXaW50ZXIlMjBDb2xsZWN0aW9ufGVufDB8fDB8fHww");
  min-width: 32%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}



#banner-b2 {
  background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url("../pictures/banners-section/b7.jpg");
}

.mini-banner h2 {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

.mini-banner h3 {
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

/* Newsletter */
.banner-search-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  background-image: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url("https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?auto=format&fit=crop&q=80&w=2070");
  background-size: cover;
  background-position: center;
  padding: 80px;
  margin: 40px 0;
  border-radius: 4px;
}

.descrip h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

.descrip p {
  font-size: 14px;
  font-weight: 600;
  color: #818ea0;
}

.descrip span {
  color: #ffbd27;
}

.for-box {
  display: flex;
  width: 40%;
}

.for-box input {
  height: 3.125rem;
  padding: 0 1.25rem;
  font-size: 14px;
  width: 100%;
  border: 1px solid rgba(197, 157, 95, 0.3); /* Subtle Gold border */
  background: rgba(0, 0, 0, 0.6); /* Much darker for contrast */
  color: #fff;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  transition: var(--transition);
}

.for-box input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.button-luxe {
  background-color: var(--primary-color);
  color: #fff;
  white-space: nowrap;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border: none;
  padding: 0 1.25em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
}

.button-luxe:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

/* ---------------- Footer ---------------- */
footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 80px;
}

.fot-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}

.img-logo {
  margin-bottom: 30px;
}

.fot-box h4 {
  font-size: 14px;
  padding-bottom: 20px;
}

.fot-box p {
  font-size: 13px;
  margin: 0 0 8px 0;
}

.fot-box a {
  font-size: 13px;
  text-decoration: none;
  color: #222;
  margin-bottom: 10px;
}

.fot-box a:hover {
  color: var(--primary-color);
  transition: var(--transition-smooth);
}

.fot-box .icon i {
  color: #465b52;
  padding-right: 4px;
  cursor: pointer;
}

.fot-box .icon i:hover {
  color: var(--primary-color);
}

.install .row img {
  border: 1px solid var(--primary-color);
  border-radius: 6px;
  margin: 10px 0 15px 0;
}

.install img {
  margin-bottom: 15px;
}


/* =========================================
   MEDIA QUERIES
   ========================================= */

/* =========================================
   MEDIA QUERIES - PREMIUM RESPONSIVE SYSTEM
   ========================================= */

/* Tablet & Smaller Laptops (1024px) */
@media (max-width: 1024px) {
    .site-header {
        padding: 0 40px;
    }

    .header-inner {
        gap: 20px;
    }

    .nav-left .nav-list {
        gap: 20px;
    }

    .nav-link {
        font-size: 11px;
    }

    .logo {
        font-size: 28px;
    }

    .header-right {
        gap: 25px;
    }

    /* Product Grid - 2 columns on tablet */
    .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 40px;
    }

    .pro-img-wrapper {
        height: 40vh;
    }

    .newsletter {
        padding: 40px;
    }
}

/* Mobile & Tablet Portrait (799px) */
@media (max-width: 799px) {
    /* Header & Nav */
    .site-header {
        padding: 0 20px;
        height: 70px !important;
        backdrop-filter: blur(10px);
    }

    .header-inner {
        position: relative;
        justify-content: space-between;
    }

    .nav-secondary {
        display: none;
    }

    .nav-toggle {
        display: block;
        padding: 10px; /* Larger touch target */
        margin-left: -10px;
    }

    /* Mobile Menu Overlay */
    .nav-left::before {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(4px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
        z-index: 998;
    }

    .nav-left.active::before {
        opacity: 1;
        visibility: visible;
    }

    /* Mobile Navigation Panel */
    .nav-left {
        position: fixed;
        left: -100%; /* Slide from left for better UX */
        top: 0;
        height: 100vh;
        width: 85%;
        max-width: 320px;
        background: #fff;
        box-shadow: 10px 0 30px rgba(0,0,0,0.1);
        padding: 100px 30px 40px;
        transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    .nav-left.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link {
        color: var(--text-color) !important;
        padding: 20px 0;
        font-size: 15px; /* Larger text for mobile */
        font-weight: 500;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link i {
        font-size: 12px;
        color: #999;
    }

    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 500px;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(36px, 12vw, 48px);
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 0 20px;
        line-height: 1.6;
    }

 

    .headline-label {
        padding: 40px 20px;
        margin-top: 20px;
    }

    .headline-label h2 {
        font-size: 28px;
    }

    /* Product Grid - Mobile Standard (2 Columns) */
    .products-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px; /* Tighter gap for mobile */
        padding: 0 15px;
    }

    .pro {
        margin: 0;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    }

    .pro-img-wrapper {
        height: 250px; /* Optimized height */
    }

    .pro .description {
        padding: 12px 10px;
    }

    .pro .description span {
        font-size: 10px;
        margin-bottom: 4px;
    }

    .pro .description h5 {
        font-size: 13px;
        margin-bottom: 6px;
        line-height: 1.4;
    }

    .pro .description h4 {
        font-size: 14px;
    }

    .pro-cart {
        padding: 10px;
        font-size: 11px;
    }



    /* Footer & Newsletter */
    .banner-search-box {
        padding: 40px 20px;
        justify-content: center;
    }
    .for-box {
         width: 100%;
    }

  
    .mini-banner {
        width: 100%;
    }


    .form-box input {
        width: 100%;
        height: 50px; /* Larger touch target */
    }

    footer {
        padding: 40px 20px;
        text-align: center;
    }

    .fot-box {
        width: 100%;
        margin-bottom: 40px;
    }

    .fot-box a {
        padding: 8px 0; /* Touch friendly links */
        display: block;
    }
}


@media (max-width: 477px) {
  .features,
  .products-container,
  .banners-box,
  .mini-banner-box,
  .site-header {
    padding: 20px;
  }

      .features {
        display: grid;
        grid-template-columns: auto auto;
        justify-content: center;
    }

  .products-container {
    justify-content: center;
    gap: 10px;
  }

  .pro {
    width: 100%;
    min-width: unset;
    padding: 10px;
    margin: 10px 0;
  }

  .pro img {
    height: 220px;
  }

  .pro .description h5 {
    font-size: 13px;
  }

  .pro .description h4 {
    font-size: 16px;
  }

  #shop-controls {
    flex-direction: column;
    gap: 5px;
  }

  .banner h2 {
    height: 19vh;
    font-size: 24px;
  }
  .banner {
    height: 50vh;
  }

  .banner-bx {
    height: 35vh;
    padding: 20px;
  }

  .mini-banner {
    height: 20vh;
  }

  .nav-extras {
      gap: 10px;
      margin-right: 5px;
  }

  .hero {
      height: 80vh;
      padding: 0 20px;
      text-align: center;
      justify-content: center;
  }

  .hero-content {
      max-width: 100%;
  }

  .hero h1 {
      font-size: clamp(40px, 10vw, 60px);
  }

  .hero p {
      font-size: 15px;
      margin: 20px auto 30px auto;
  }

  .hero-btns {
      justify-content: center;
      flex-direction: column;
      gap: 10px;
  }

  .btn-luxe {
      width: 100%;
      padding: 15px;
  }

  .hero-scroll {
      display: none;
  }

  .site-header {
      padding: 0 20px;
  }

  .header-left .logo {
      font-size: 20px;
      letter-spacing: 3px;
  }

  .header-icons .icon-link {
      font-size: 16px;
  }
}


/* Small Mobile Sizes (< 375px) */
@media (max-width: 375px) {
    .products-container {
        grid-template-columns: 1fr; /* Single column for clarity */
        gap: 20px;
        padding: 0 20px;
    }

    .pro-img-wrapper {
        height: 380px; /* Tall, premium images */
    }

    .pro .description {
        padding: 15px;
        text-align: left; /* Better readability */
    }

    .pro .description h5 {
        font-size: 16px;
    }

    .pro .description h4 {
        font-size: 18px;
        margin-top: 8px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .btn-luxe {
        width: 100%;
        justify-content: center;
    }
    .banner-search-box{
        padding: 50px ;
    }
    .for-box{
        width: 100%;
        margin-top: 20px;
    }

}

/* =========================================
   hero for (Shop, Blog, About)
   ========================================= */


/* Hero for sub-pages */
.home-page {
  background-size: cover;
  background-position: top;
  height: 60vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-page::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.home-page > * {
    position: relative;
    z-index: 2;
    color: #fff;
}

.home-page h2 {
  font-size: clamp(32px, 5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
  font-weight: 700;
}

.home-page p {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  opacity: 0.9;
  font-weight: 500;
}

/* =========================================
   pagination
   ========================================= */

#blog-page {
  background-image: url("pictures/general/blog-home-image.jpg");
}

/* Pagination */
.page-nav {
    text-align: center;
    margin: 80px 0;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.page-nav a {
    text-decoration: none;
    background-color: transparent;
    padding: 15px 20px;
    border: 1px solid var(--border-ultra-light);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-smooth);
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-nav a:hover,
.page-nav a.active {
    background-color: var(--secondary-color);
    color: #fff;
    border-color: var(--secondary-color);
}

/* =========================================
   Blog page
   ========================================= */
 .blog {
  padding: 100px 80px 0;
  max-width: 1400px;
  margin: 0 auto;
}

.blog-box {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  padding-bottom: 120px;
  gap: 60px;
}

.blog-img {
  width: 50%;
  overflow: hidden;
  border-radius: 4px;
}

.blog-box img {
  width: 100%;
  height: 65vh;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
background-position: top;
}

.blog-box:hover img {
    transform: scale(1.05);
}

.blog-details {
  width: 50%;
  position: relative;
  z-index: 2;
}



.blog-details h4 {
    font-size: 32px;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    line-height: 1.3;
}

.blog-details p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.blog-details a {
  text-decoration: none;
  font-size: 11px;
  color: var(--secondary-color);
  font-weight: 700;
  letter-spacing: 2px;
  position: relative;
  transition: var(--transition-smooth);
  padding-bottom: 5px;
}

.blog-details a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 1px;
  background-color: var(--primary-color);
  transition: width 0.4s ease;
}

.blog-details a:hover {
  color: var(--primary-color);
}

.blog-details a:hover::after {
  width: 100%;
}



/* Mobile Responsive for Sub-pages */
@media (max-width: 799px) {
  .blog {
    padding: 100px 20px 0 20px;
  }

  .blog-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }

  .blog-details {
    width: 100%;
  }

  .about-header {
    flex-direction: column;
    padding: 40px 20px;
  }

  .about-header img {
    width: 100%;
    margin-bottom: 20px;
  }

  .about-text {
    width: 100%;
    padding-left: 0;
  }
}


/* =========================================
   About page
   ========================================= */

   
.about-header {
  display: flex;
  align-items: center;
  padding: 80px;
}

.about-header img {
  width: 50%;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
}

.about-text {
  padding-left: 40px;
  width: 50%;
}

.about-text h2 {
    font-size: 32px;
}

.about-text p {
    color: var(--text-color);
    line-height: 1.6;
}

.about-text abbr {
    display: block;
    margin-top: 20px;
    color: #555;
    font-size: 14px;
}


/* Marquee Replacement */
.marquee-container {
    background-color: #f0f0f0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 10px 0;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee-scroll 20s linear infinite;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: 500;
}

/* app  */

.about-app {
    text-align: center;

}

.about-app h1 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-app h1 a {
    color: var(--primary-color);
    text-decoration: underline;
}


.about-app img {
    max-width: 400px;
    padding: 20px;
    margin: 40px auto;
    display: block;
    filter: drop-shadow(var(--shadow-lg));
}

@media (max-width: 799px) {
    .about-header {
        flex-direction: column;
        padding: 40px 20px;
    }
    .about-header img {
        width: 100%;
        margin-bottom: 30px;
    }
    .about-text {
        width: 100%;
        padding-left: 0;
    }
    #about-app {
        padding: 40px 0;
    }
    #about-app .app-pic {
        width: 90%;
    }
}
/* =========================================
   Contact page
   ========================================= */

.contact-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px;
}

.contact-details .details {
    width: 40%;
}

.contact-details .details span,
.form-details form span {
    font-size: 12px;
}

.contact-details .details h2,
.form-details form h2 {
    font-size: 26px;
    line-height: 35px;
    padding: 20px 0;
}

.contact-details .details h3 {
    font-size: 16px;
    padding-bottom: 15px;
}



.contact-details .details li {
    list-style: none;
    display: flex;
    padding: 10px 0;
}

.contact-details .details li i {
    font-size: 14px;
    padding-right: 22px;
}

.contact-details .details li p {
    margin: 0;
    font-size: 14px;
}

.contact-details .map {
    width: 55%;
    height: 400px;
}

.contact-details .map iframe {
    width: 100%;
    height: 100%;
}

.form-details {
    display: flex;
    justify-content: space-between;
    margin: 40px 80px;
    padding: 80px;
    background: #fff;
    box-shadow: var(--shadow-md);
    border-radius: 4px;
}

.form-details form {
    width: 65%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.form-details form span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    font-weight: 600;
}

.form-details form h2 {
    font-size: 36px;
    padding: 10px 0 30px 0;
    line-height: 1.2;
}

.form-details form input,
.form-details form textarea {
    width: 100%;
    padding: 15px 0;
    outline: none;
    margin-bottom: 30px;
    border: none;
    border-bottom: 2px solid #eee;
    background: transparent;
    font-size: 15px;
    
}



.form-details form button {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}



.form-details .people {
    width: 30%;
}

.form-details .people div {
    padding-bottom: 35px;
    display: flex;
    align-items: center;
}

.form-details .people div img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin-right: 20px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
}

.form-details .people div p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color);
}

.form-details .people div p span {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-color);
    font-family: "Playfair Display", serif;
}

.form-details textarea:focus,
.form-details input:focus {
    border-bottom-color: var(--primary-color);
    background: #fff;
    padding-left: 25px; /* Subtle interaction */
    border-color: var(--primary-color);

}

@media (max-width: 799px) {
    .contact-details {
        flex-direction: column;
        padding: 40px;
    }
    .contact-details .details {
        width: 100%;
        margin-bottom: 30px;
    }
    .contact-details .map {
        width: 100%;
    }
    .form-details {
        flex-direction: column;
        padding: 40px;
    }
    .form-details form {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 477px) {
    .form-details  {
   margin: 40px 22px;
    }
    .form-details .people {
    width: 20%;
    margin-top: 40px;
}

.shop-filters-bar{
    flex-direction: column;
    gap: 10px;
}
}



/* =========================================
   Shop page
   ========================================= */

   /* ---------------- filters ---------------- */

#shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 80px;
    background: #fff;
    border-bottom: 1px solid var(--border-ultra-light);
}

.shop-filters-bar {
    display: flex;
    gap: 40px;
    align-items: center;
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.filter-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.shop-select {
    border: none;
    background: transparent;
    font-size: 13px;
    font-weight: 600;
    color: var(--secondary-color);
    cursor: pointer;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
    transition: var(--transition-fast);
}

.shop-select:hover {
    border-bottom-color: var(--primary-color);
}

.results-count {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
}

/* ---------------- Spotlight Section ---------------- */
.spotlight-section {
    padding: 100px 80px;
    background: #fbfbfb;
}

.spotlight-container {
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.spotlight-image {
    flex: 1;
    height: 600px;
    overflow: hidden;
    position: relative;
    border-radius: 4px;
}

.spotlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
}

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

.spotlight-content {
    flex: 1;
    max-width: 500px;
}

.spotlight-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.spotlight-content h2 {
    font-size: 48px;
    font-family: "Playfair Display", serif;
    margin-bottom: 25px;
    line-height: 1.2;
}

.spotlight-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.btn-luxe {
    padding: 18px 45px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-luxe:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

@media (max-width: 1024px) {
    .spotlight-container {
        flex-direction: column;
        gap: 50px;
    }
    .spotlight-image {
        height: 400px;
        width: 100%;
    }
    .spotlight-section {
        padding: 80px 40px;
    }
}



/* =========================================
   Login page
   ========================================= */

.login-page {
    background: #fafafa;
}

.login-container {
    padding-top: var(--header-height);
    min-height: 100vh;
    display: flex;
}

.login-split {
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    background: #fff;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
    border-radius: 4px;
}

.login-image {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 80px 60px;
    color: #fff;
}

.login-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.login-image-overlay {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 500px;
}

.login-image-overlay h2 {
    font-size: 56px;
    color: #fff !important;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

.login-image-overlay p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.6;
    font-weight: 300;
}

.login-form-area {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 10%;
    background: #fff;
}

.login-form-header {
    margin-bottom: 50px;
}

.login-form-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-family: "Playfair Display", serif;
    letter-spacing: -0.5px;
}

.login-form-header p {
    font-size: 15px;
    color: var(--text-muted);
}

.login-form-header a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    position: relative;
}

.login-form-header a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.login-form-header a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.auth-form {
    max-width: 440px;
    width: 100%;
}

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

.form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.auth-form input[type="email"],
.auth-form input[type="password"] {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    border: none;
    border-bottom: 1px solid #e0e0e0;
    background: #fbfbfb;
    font-size: 15px;
    outline: none;
    transition: var(--transition-fast);
}

.auth-form input:focus {
    border-bottom-color: var(--primary-color);
    background: #fff;
    padding-left: 25px; /* Subtle interaction */
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.forgot-link {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.forgot-link:hover {
    color: var(--primary-color);
}

.checkbox-container {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-muted);
}

.btn-luxe-dark {
    width: 100%;
    height: 65px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-bottom: 40px;
}

.btn-luxe-dark:hover {
    background: var(--primary-color);
    box-shadow: 0 15px 30px rgba(179, 139, 77, 0.25);
}

.social-login p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-btns {
    margin-top: 25px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-social {
    width: 60px;
    height: 60px;
    border: 1px solid #eee;
    border-radius: 50%;
    background: #fff;
    color: var(--secondary-color);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.btn-social:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-5px);
}

@media (max-width: 1024px) {
    .login-split {
        margin: 0;
        border-radius: 0;
    }
}

@media (max-width: 850px) {
    .login-image {
        display: none;
    }
    .login-form-area {
        padding: 100px 40px;
    }
}

/* ---------------- Cart Page ---------------- */
.cart-container {
    padding: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.cart-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
}

.cart-section-title {
    font-size: 24px;
    font-family: "Playfair Display", serif;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-ultra-light);
}

/* Cart Items */
.cart-items {
    flex: 1;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr 120px 120px;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-ultra-light);
    transition: var(--transition-smooth);
}

.cart-item:hover {
    background: #fafafa;
}

.cart-item-image {
    width: 120px;
    height: 160px;
    overflow: hidden;
    border-radius: 4px;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.cart-item-brand {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.cart-item-specs {
    display: flex;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.cart-item-actions {
    display: flex;
    gap: 20px;
}

.btn-text {
    background: none;
    border: none;
    color: var(--secondary-color);
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition-fast);
}

.btn-text:hover {
    color: var(--primary-color);
}

.btn-remove:hover {
    color: #d32f2f;
}

/* Quantity Selector */
.cart-item-quantity label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-ultra-light);
    border-radius: 4px;
    overflow: hidden;
}

.qty-btn {
    width: 35px;
    height: 40px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: var(--transition-fast);
}

.qty-btn:hover {
    background: #f5f5f5;
}

.quantity-selector input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 600;
    -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-price {
    text-align: right;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary-color);
}

/* Cart Summary */
.cart-summary {
    background: #fafafa;
    padding: 30px;
    border-radius: 4px;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    font-size: 14px;
}

.summary-line .text-muted {
    color: var(--text-muted);
    font-style: italic;
}

.promo-code {
    margin: 20px 0;
    display: flex;
    gap: 10px;
}

.promo-code input {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-ultra-light);
    border-radius: 4px;
    font-size: 13px;
}

.btn-apply {
    padding: 12px 20px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-apply:hover {
    background: var(--primary-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 2px solid var(--secondary-color);
    font-size: 18px;
    font-weight: 700;
}

.total-price {
    color: var(--primary-color);
    font-size: 24px;
}

.btn-checkout {
    width: 100%;
    padding: 18px;
    background: var(--secondary-color);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 20px;
}

.btn-checkout:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 25px 0;
    font-size: 28px;
    color: var(--text-muted);
}

.continue-shopping {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.continue-shopping:hover {
    color: var(--primary-color);
}

/* Cart Benefits */
.cart-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 80px;
    background: #fafafa;
    margin-top: 80px;
}

.benefit-item {
    text-align: center;
}

.benefit-item i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.benefit-item p {
    font-size: 13px;
    color: var(--text-muted);
}

/* Responsive Cart */
@media (max-width: 1024px) {
    .cart-main {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cart-container {
        padding: 40px 20px;
    }

    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }

    .cart-item-quantity,
    .cart-item-price {
        grid-column: 2;
    }

    .cart-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
