/* ========================================
   CelebrityLuxe - Luxury Lipstick Brand
   Premium Beauty E-commerce Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --primary-color: #d1ae45;
    --primary-dark: #b8956a;
    --secondary-color: #000000;
    --accent-gold: #c9a96e;
    --bg-light: #e5ddd2;
    --bg-white: #e5ddd2;
    --text-dark: #1a1a1a;   
    --text-light: #666666;
    --text-muted: #999999;
    --border-light: #e5e5e5;
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --font-primary: 'Playfair Display', Georgia, serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--bg-white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-white {
    background: var(--bg-white);
    color: var(--secondary-color);
}

.btn-white:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-control.error {
    border-color: var(--error);
}

.error-message {
    color: var(--error);
    font-size: 0.875rem;
    margin-top: 5px;
}

/* Alerts */
.alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-weight: 500;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error);
    border: 1px solid var(--error);
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
    border: 1px solid var(--warning);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #000000;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}


.marquee-container {
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #ff0000 0%, #ff0000 100%);
    padding: 5px 0;
}

.marquee-content {  
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite !important;
}

.marquee-content span {
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    white-space: nowrap;
    padding-right: 50px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-top {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 0.85rem;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-links {
    display: flex;
    gap: 20px;
}

.header-top-links a:hover {
    color: var(--primary-color);
}

.header-main {
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled .header-main {
    padding: 10px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Desktop logo - default styles */
.logo img {
    height: 60px !important;
    width: auto;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .logo img {
        height: 50px !important;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    .logo img {
        height: 45px !important;
    }
}

.logo {
    font-family: var(--font-primary);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.logo span {
    color: var(--primary-color);
}

.search-box {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 2px solid var(--border-light);
    border-radius: 30px;
    font-size: 0.95rem;
    transition: var(--transition);
}

.search-box input:focus {
    border-color: var(--primary-color);
}

.search-box button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.search-box button:hover {
    background: var(--primary-dark);
}

/* Mobile Header Layout Fix */

@media (max-width:768px){

.header-main .container{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:space-between;
}

/* Search box full width below header */
.search-box{
    order:3;
    width:100%;
    max-width:100%;
    margin-top:10px;
}

.search-box form{
    width:100%;
}

.search-box input{
    width:100%;
    padding:10px 45px 10px 15px;
}

.search-box button{
    width:36px;
    height:36px;
}

/* keep logo and icons in first row */
.logo{
    order:1;
}

.header-actions{
    order:2;
}

}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-action {
    position: relative;
    color: #ffffff;
    font-size: 1.5rem;
    padding: 5px;
    cursor: pointer;
}

.header-action:hover {
    color: var(--primary-color);
}

.header-action .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    padding:0px 20px;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: #ffffff;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-close,
.hamburger {
    display: none;
}

/* Mobile Menu */
@media (max-width: 991px) {
    .hamburger {
        color: #ffffff;
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
        padding: 5px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #000000;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 0;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-close {
        display: block;
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 1.5rem;
        cursor: pointer;
        color:#d1ae45;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 1.1rem;
    }

    .nav-link::after {
        display: none;
    }

    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        z-index: 1000;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .search-box {
        display: flex;
    }

    .header-actions {
        gap: 15px;
    }
}

/* Hero Section */
.hero {
    padding-top: 130px;
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 20px 10px;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-color);
    font-style: italic;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-video {
    position: relative;
    text-align: center;
}

.hero-video video {
    max-width: 100%;
    width: 600px;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-video {
    max-width: 100%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.hero-badge {
    position: absolute;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 600;
    animation: pulse 2s ease-in-out infinite;
}

.hero-badge.top-right {
    top: 10%;
    right: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Hero Sliding Images Background */
.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-slide-track {
  display: flex;
  height: 100%;
  animation: slideLeft 25s linear infinite;
  gap: 10px;
}

.hero-slide-track img {
  height: 100%;
  width: 100vw;
  object-fit: cover;
  flex-shrink: 0;
}

.hero-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, transparent 50%, rgba(0,0,0,0.4) 100%);
  pointer-events: none;
  border-radius: var(--radius-lg);
}

.hero-slider:hover .hero-slide-track {
  animation-play-state: paused;
}

@keyframes slideLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Gold Shimmer Overlay */
.hero-shimmer {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 30%, 
    rgba(209,174,69,0.15) 50%, 
    transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@media (max-width: 991px) {
  .hero-slider {
    height: 400px;
    margin: 0 auto;
    max-width: 90%;
  }
  
  .hero-slide-track img {
    min-width: 400px;
  }
}

@media (max-width: 991px) {
    .hero {
        padding-top: 95px;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        order: 2;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        margin: 0 auto 35px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-badge {
        display: none;
    }
}

/* Section Styles */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-desc {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Featured Products */
.featured-products {
    background: #000000;

    .section-title {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 15px;
}
.section-desc {
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.sale {
    background: var(--error);
}

.product-badge.bestseller {
    background: #00a413;
    color: white !important;
    left: auto;
    right: 15px;
    z-index: 10;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    font-size: 0.6rem;
    padding: 5px 5px;
}

.product-actions {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--text-dark);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-action-btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.product-info {
    padding: 20px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.product-title {
    font-family: var(--font-primary);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.product-title a:hover {
    color: var(--primary-color);
}

.product-shade {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.shade-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: default;
    transition: transform 0.2s ease;
}

.shade-color:hover {
    transform: scale(1.1);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.original-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.product-rating span {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.btn-secondary {
    background: #d1ae45;
    color: #ffffff;
}

.btn-secondary:hover {
    background: #565656;
    transform: translateY(-2px);
}

/* Featured Products Mobile Layout */

@media (max-width:768px){

.product-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:15px;
}

.product-card{
    border-radius:10px;
}

.product-info{
    padding:12px;
}

.product-title{
    font-size:0.95rem;
}

.current-price{
    font-size:1rem;
}

.original-price{
    font-size:0.8rem;
}

.product-actions{
    display:none; /* hide hover buttons on mobile */
}

}

/* Categories */
.categories-section {
    background: #ffffff;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 25px;
    color: var(--bg-white);
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--bg-white);
}

.category-count {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Categories Mobile Layout */

@media (max-width:768px){

.category-grid{
    grid-template-columns: repeat(2, 1fr);
    gap:15px;
}

.category-overlay{
    padding:15px;
}

.category-title{
    font-size:1rem;
}

.category-count{
    font-size:0.8rem;
}

}

/* Banner Section */
.banner-section {
    background: #ffffff;
    padding: 40px 0;
}

.banner-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.banner-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
}

.banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.banner-card:hover img {
    transform: scale(1.05);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
    z-index: 1;
}

.banner-title {
    font-size: 1.75rem;
    color: #ffffff;
    margin-bottom: 10px;
}

.banner-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.banner-card .btn {
    background: #ffffff;
    color: var(--secondary-color);
}

.banner-card .btn:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

@media (max-width: 991px) {
    .banner-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-section {
    background: #ffffff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #000000;
    padding: 40px;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 6rem;
    font-family: var(--font-primary);
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-content {
    position: relative;
    z-index: 1;
    margin-bottom: 25px;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #ffffff;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 1.25rem;
}

.testimonial-info h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 3px;
}

.testimonial-rating {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #2d2d2d 100%);
    padding: 80px 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    color: var(--bg-white);
    margin-bottom: 15px;
}

.newsletter-desc {
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.newsletter-form button {
    padding: 16px 30px;
}

@media (max-width: 576px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 20px 0 30px;
}

/* Footer Top Image Strip */

.footer-top-images{
    display:flex;
    justify-content:center;
    gap:10px;
    padding:20px 0;
    background:#000000;
}

.footer-top-images img{
    width:200px;
    height:200px;
    object-fit:cover;
    border-radius:6px;
}

@media (max-width: 768px){

.footer-top-images{
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    justify-items:center;
    gap:10px;
}

.footer-top-images img{
    width:90px;
    height:90px;
}

}   

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    color: var(--bg-white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand .logo img {
    max-width: 150px;
    height: auto;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: var(--bg-white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(247, 247, 247, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-payment {
    display: flex;
    gap: 10px;
}

.footer-payment img {
    height: 30px;
    opacity: 0.7;
}

@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Shop Page */
.page-header {
    padding: 200px 0 20px;
    background: linear-gradient(135deg, #ffe79e 0%, #d4ab30 100%);
    text-align: center;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--primary-color);
}

.breadcrumb span {
    color: var(--text-muted);
}

/* Shop Layout */
.shop-section {
    background: #ffffff;
    padding: 60px 0;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.shop-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #eccc69;
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    font-size: 1.1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #000000;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-label {
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.filter-option input {
    accent-color: var(--primary-color);
}

.filter-option label {
    cursor: pointer;
    color: var(--text-light);
}

.price-range {
    display: flex;
    gap: 10px;
    align-items: center;
}

.price-range input {
    width: 80px;
    padding: 8px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    text-align: center;
}

/* Shop Main Content */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.shop-results {
    color: #000000;
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
}

.shop-sort select {
    padding: 10px 35px 10px 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: #eccc69;
    cursor: pointer;
}

.shop-view {
    display: flex;
    gap: 10px;
}

.view-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.view-btn.active,
.view-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

@media (max-width: 991px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-section {
        padding: 10px 0;
    }

.shop-sidebar{
    position:relative;
    top:0;
    width:100%;
    margin-bottom:20px;
}

    .sidebar-widget {
        display: flex;
        padding:18px;
        margin-bottom:15px;
    }

    .sidebar-title{
    font-size:1rem;
    margin-bottom:12px;
    padding-bottom:10px;
}

    .sidebar-widget.active {
        display: flex;
    }

    .filter-toggle {
        display: block;
        width: 100%;
        padding: 15px;
        background: var(--primary-color);
        color: var(--bg-white);
        border: none;
        border-radius: var(--radius-sm);
        cursor: pointer;
        font-weight: 500;
    }
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    transition: var(--transition);
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

/* Product Details Page */
.product-details {
    padding: 180px 0 80px;
    background: #ffffff;
}



.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 120px;
}

.main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--bg-white);
    margin-bottom: 20px;
    max-height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.main-image img,
.main-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

@media (max-width: 991px) {
    .main-image {
        max-height: 100%;
    }
}

@media (max-width: 768px) {
    .main-image {
        max-height: 100%;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .main-image {
        max-height: 100%;
    }
}

.related-products {
    background: #ffffff;
}

/* Thumbnail Gallery */
.thumbnail-gallery {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.thumbnail-gallery .thumbnail {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail-gallery .thumbnail:hover,
.thumbnail-gallery .thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail-gallery .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-details-info {
    padding: 20px 0;
}

.product-category {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.product-rating .stars {
    color: var(--accent-gold);
}

.product-rating .count {
    color: var(--text-muted);
}

.product-price-block {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.product-original-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.discount-badge {
    background: var(--error);
    color: var(--bg-white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.product-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

.product-options {
    margin-bottom: 30px;
}

.option-group {
    margin-bottom: 25px;
}

.option-label {
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.shade-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.shade-option {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.shade-option:hover,
.shade-option.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.shade-option.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-white);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-light);
    background: #ffffff;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
}

.quantity-value {
    width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.stock-status {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 25px;
}

.stock-status.in-stock {
    color: var(--success);
}

.stock-status.out-of-stock {
    color: var(--error);
}

.stock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.product-actions .btn {
    flex: 1;
}


.product-meta {
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
}

.meta-item {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
    font-style: normal;
    font-weight: 500;
}

.meta-item strong {
    color: var(--text-dark);
    min-width: 120px;
}

@media (max-width: 991px) {
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-gallery {
        position: static;
    }
}

/* Product Tabs */
.product-tabs {
    padding: 60px 0;
    background: #ffffff;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.tab-btn {
    padding: 15px 0;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.tab-btn.active,
.tab-btn:hover {
    color: var(--primary-color);
}

.tab-btn.active::after {
    transform: scaleX(1);
}

.tab-content {
    max-width: 900px;
    margin: 0 auto;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    margin-bottom: 20px;
}

.tab-pane p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.ingredients-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.ingredients-list li {
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    color: var(--text-light);
}

/* Reviews Section */
.reviews-section {
    padding: 60px 0;
}

.reviews-summary {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.rating-overview {
    text-align: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.rating-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.rating-stars {
    color: var(--accent-gold);
    font-size: 1.25rem;
    margin: 10px 0;
}

.rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rating-bar {
    display: flex;
    align-items: center;
    gap: 15px;
}

.rating-bar-label {
    min-width: 50px;
    color: var(--text-light);
}

.rating-bar-track {
    flex: 1;
    height: 8px;
    background: var(--border-light);
    border-radius: 4px;
    overflow: hidden;
}

.rating-bar-fill {
    height: 100%;
    background: var(--accent-gold);
    border-radius: 4px;
}

.rating-bar-count {
    min-width: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.review-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 40px;
}

.review-form h3 {
    margin-bottom: 20px;
}

.rating-select {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.rating-select i {
    font-size: 1.5rem;
    color: var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.rating-select i:hover,
.rating-select i.active {
    color: var(--accent-gold);
}

.review-card {
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.review-name {
    font-weight: 600;
    margin-bottom: 3px;
}

.review-date {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.review-stars {
    color: var(--accent-gold);
    font-size: 0.9rem;
}

.review-text {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .reviews-summary {
        grid-template-columns: 1fr;
    }

    .ingredients-list {
        grid-template-columns: 1fr;
    }
}

/* Cart Page */
.cart-page {
    padding: 150px 0 60px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
}

.cart-table {
    background: #ffffff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.cart-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 20px 25px;
    background: #ffffff;
    font-weight: 600;
    border-bottom: 1px solid var(--border-light);
}

.cart-item {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 50px;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid var(--border-light);
    align-items: center;
}

.cart-product {
    display: flex;
    gap: 20px;
    align-items: center;
}

.cart-product-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #ffffff;
}

.cart-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-product-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.cart-product-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.cart-price,
.cart-total {
    font-weight: 600;
    font-size: 1.1rem;
}

.cart-quantity .quantity-selector {
    justify-content: flex-start;
}

.cart-remove {
    background: none;
    border: none;
    color: var(--error);
    cursor: pointer;
    font-size: 1.25rem;
    transition: var(--transition);
}

.cart-remove:hover {
    transform: scale(1.2);
}

.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.cart-empty i {
    font-size: 4rem;
    color: #8b8b8b;
    margin-bottom: 20px;
}

.cart-empty h3 {
    margin-bottom: 15px;
}

.cart-empty p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* Cart Summary */
.cart-summary {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-lg);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.25rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.coupon-form {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.coupon-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
}

.coupon-form button {
    padding: 12px 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--text-light);
}

.summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    padding-top: 15px;
    margin-top: 15px;
    border-top: 1px solid var(--border-light);
}

.summary-row.total span:last-child {
    color: var(--primary-color);
}

.checkout-btn {
    width: 100%;
    margin-top: 25px;
    padding: 16px;
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 991px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .cart-header {
        display: none;
    }

    .cart-item {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .cart-product {
        flex-direction: column;
        text-align: center;
    }

    .cart-remove {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .cart-item {
        position: relative;
    }
}

/* Checkout Page */
.checkout-page {
    padding: 120px 0 60px;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
}

.checkout-form {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.form-control{  
background: #ffffff;
border: 1px solid #a3a3a3;
}
.form-section {
    margin-bottom: 35px;
}

.form-section-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-light);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.full {
    grid-template-columns: 1fr;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option:hover,
.payment-option.selected {
    border-color: var(--primary-color);
}

.payment-option input {
    accent-color: var(--primary-color);
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Checkout Summary */
.checkout-summary {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-light);
}

.order-item-image {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #ffffff;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
}

.order-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.order-item-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.order-item-price {
    font-weight: 600;
}

.price-update {
    transition: all 0.3s ease;
    transform: scale(1.08);
    color: #c9a227;
}

.summary-row span {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-summary {
        position: static;
        order: -1;
    }
}

/* Order Success */
.order-success {
    padding: 120px 0 60px;
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--success);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.order-success h2 {
    margin-bottom: 15px;
}

.order-success p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.order-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

/* Auth Pages */
.auth-page {
    padding: 120px 0 60px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-container {
    max-width: 450px;
    width: 100%;
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header .logo {
    margin-bottom: 20px;
    display: inline-block;
}

.auth-header p {
    color: var(--text-light);
}

.auth-form .form-group {
    margin-bottom: 20px;
}

.auth-form .btn {
    width: 100%;
    margin-top: 10px;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
    color: var(--text-muted);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.auth-social {
    display: flex;
    gap: 15px;
}

.social-btn {
    flex: 1;
    padding: 12px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 1.1rem;
}

.social-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary-color);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: var(--text-light);
}

.auth-footer a {
    color: var(--primary-color);
    font-weight: 600;
}

/* User Dashboard */
.dashboard-page {
    padding: 200px 0 20px;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.dashboard-sidebar {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.user-info {
    text-align: center;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #000000;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 0 auto 15px;
}

.user-name {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.user-email {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.dashboard-menu li {
    margin-bottom: 5px;
}

.dashboard-menu a {
    display: block;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    transition: var(--transition);
}

.dashboard-menu a:hover,
.dashboard-menu a.active {
    background: #ffffff;
    color: var(--primary-color);
}

.dashboard-menu i {
    margin-right: 10px;
    width: 20px;
}

.dashboard-content {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.dashboard-title {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: rgb(255, 255, 255);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #000000;
}

.orders-table th {
    background: #ffffff;
    font-weight: 600;
}

.order-status {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.order-status.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
}

.order-status.processing {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.order-status.shipped {
    background: rgba(23, 162, 184, 0.1);
    color: #17a2b8;
}

.order-status.delivered {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.order-status.cancelled {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error);
}

/* Compact sidebar and orders table for 768px */
@media (max-width: 768px) {
    .dashboard-page {
    padding: 250px 0 20px;
}
    .dashboard-layout {
        
        grid-template-columns: 1fr;
        gap: 15px; /* smaller gap for compact layout */
    }

    /* Sidebar as compact footer */
    .dashboard-sidebar {
        position: static;
        margin-bottom: 0; /* attach to bottom */
        padding: 12px 10px; /* reduce padding */
        border-radius: var(--radius-sm);
        box-shadow: none; /* optional: remove shadow to look like footer */
    }

    .user-info {
        padding-bottom: 10px;
        margin-bottom: 10px;
    }

    .user-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .user-name {
        font-size: 1rem;
    }

    .user-email {
        font-size: 0.8rem;
    }

    .dashboard-menu a {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

    /* Stats stacked */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    /* Orders table compact */  
    .orders-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        font-size: 0.7rem;
        margin-bottom: 10px; /* closer to footer effect */
    }

    .orders-table th,
    .orders-table td {
        padding: 6px 5px;
        white-space: normal; /* wrap text */
    }

    .dashboard-content {
        padding: 15px 10px;
    }
}

/* Admin Panel Styles */
.admin-body {
    background: #ffffff;
}

.admin-wrapper {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 280px;
    background: #1a1a2e;
    color: var(--bg-white);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar-header {
    padding: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.admin-sidebar-header .logo {
    color: var(--bg-white);
    font-size: 1.5rem;
}

.admin-menu {
    padding: 20px 0;
}

.admin-menu-item {
    margin-bottom: 5px;
}

.admin-menu-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.admin-menu-link:hover,
.admin-menu-link.active {
    background: rgba(255,255,255,0.1);
    color: var(--bg-white);
    border-left: 3px solid var(--primary-color);
}

.admin-menu-link i {
    width: 20px;
}

.admin-main {
    flex: 1;
    margin-left: 280px;
    padding: 30px;
}

.admin-header {
    background: var(--bg-white);
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -30px -30px 30px;
    box-shadow: var(--shadow-sm);
}

.admin-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-header-left h2 {
    font-size: 1.5rem;
}

.admin-header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.admin-notification {
    position: relative;
    font-size: 1.25rem;
    cursor: pointer;
}

.admin-notification .badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--error);
    color: var(--bg-white);
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.admin-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.admin-user-info h4 {
    font-size: 0.95rem;
}

.admin-user-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Admin Cards */
.admin-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.admin-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    padding: 25px;
    box-shadow: var(--shadow-sm);
}

.admin-card-icon {
    width: 55px;
    height: 55px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.admin-card-icon.primary {
    background: rgba(212, 165, 116, 0.1);
    color: var(--primary-color);
}

.admin-card-icon.success {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.admin-card-icon.warning {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.admin-card-icon.info {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
}

.admin-card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.admin-card-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Admin Tables */
.admin-table {
    width: 100%;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.admin-table thead {
    background: var(--bg-light);
}

.admin-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
}

.admin-table td {
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-light);
}

.admin-table tbody tr:hover {
    background: var(--bg-light);
}

/* Admin Forms */
.admin-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.admin-form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    transition: var(--transition);
}

.admin-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-badge.active {
    background: rgba(40, 167, 69, 0.1);
    color: var(--success);
}

.status-badge.inactive {
    background: rgba(220, 53, 69, 0.1);
    color: var(--error);
}

.status-badge.pending {
    background: rgba(255, 193, 7, 0.1);
    color: #856404;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    padding: 20px 25px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

.modal-body {
    padding: 25px;
}

.modal-footer {
    padding: 20px 25px;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

/* Loading Spinner */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-light);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Toast Notifications */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 15px 20px;
    border-radius: var(--radius-sm);
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--error);
}

.toast.warning {
    border-left: 4px solid var(--warning);
}

.toast-icon {
    font-size: 1.25rem;
}

.toast.success .toast-icon { color: var(--success); }
.toast.error .toast-icon { color: var(--error); }
.toast.warning .toast-icon { color: var(--warning); }

.toast-message {
    flex: 1;
}

/* Image Upload */
.image-upload {
    border: 2px dashed var(--border-light);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.image-upload:hover {
    border-color: var(--primary-color);
    background: var(--bg-light);
}

.image-upload i {
    font-size: 3rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.image-upload p {
    color: var(--text-muted);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border-light);
    margin-bottom: 20px;
}

.empty-state h3 {
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ========================= */
/* ADMIN PANEL MOBILE FIX */
/* ========================= */

@media screen and (max-width: 768px){

/* Layout */
.admin-wrapper{
flex-direction:column;
}

/* Sidebar */
.admin-sidebar{
position:fixed;
left:-260px;
top:0;
width:260px;
height:100%;
transition:0.3s;
z-index:999;
}

.admin-sidebar.active{
left:0;
}

/* Main content */
.admin-main{
margin-left:0 !important;
padding:15px !important;
width:100%;
}

/* Header */
.admin-header{
flex-direction:column;
align-items:flex-start;
gap:10px;
padding:15px;
margin:-15px -15px 20px -15px;
}

/* Cards layout */
.admin-cards{
grid-template-columns:1fr !important;
gap:15px;
}

.admin-card{
padding:18px;
}

.admin-card-value{
font-size:1.6rem;
}

/* Table scroll */
.admin-table{
display:block;
overflow-x:auto;
white-space:nowrap;
}

/* Table text */
.admin-table th,
.admin-table td{
padding:10px;
font-size:0.85rem;
}

/* Forms */
.admin-form{
padding:20px;
}

/* User info */
.admin-user-info{
display:none;
}

/* Modal */
.modal{
width:95%;
}

/* Image upload */
.image-upload{
padding:25px;
}

}


/* EXTRA SMALL PHONES */

@media screen and (max-width:480px){

.admin-card{
padding:15px;
}

.admin-card-value{
font-size:1.3rem;
}

.admin-card-icon{
width:40px;
height:40px;
font-size:1rem;
}

.admin-header-left h2{
font-size:1.1rem;
}

}

/* About Page Beautiful Styling */
.about-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://images.unsplash.com/photo-1556228570-3c43bd2c40d1?w=1920');
  background-size: cover;
  background-position: center;
  padding: 200px 0 150px;
  text-align: center;
  color: var(--bg-white);
}

.about-hero .hero-title {
  font-size: 3.5rem;
  color: var(--bg-white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.about-hero .hero-subtitle {
  color: rgba(255,255,255,0.9);
}

.hero-desc.large {
  font-size: 1.3rem;
  max-width: none;
  margin: 0 auto 40px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.story-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  height: 500px;
  object-fit: cover;
}

.brand-values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.value-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  color: var(--bg-white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 40px 20px;
  position: relative;
}

.process-step i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
  color: var(--bg-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px;
}

.team-member {
  text-align: center;
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 25px;
  box-shadow: var(--shadow-lg);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
  color: var(--bg-white);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.stat-item .stat-label {
  font-size: 1.1rem;
  opacity: 0.95;
}

.cta-section {
  background: var(--bg-white);
  padding: 100px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .story-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .story-visual img {
    height: 300px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .value-item {
    max-width: 300px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Policy Pages Beautiful Styling */
.policy-content {
  max-width: 1000px;
  margin: 0 auto;
}

.pol-section{
  background: #000000;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 0px;
  box-shadow: var(--shadow-md);
  border: 1px solid #000000;
  position: relative;
  overflow: hidden;
}
@media (max-width: 991px) {
    .pol-layout {
        
        grid-template-columns: 1fr;
    }

    .pol-section {
        padding: 10px 0;
    }
}

.policy-section {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
}

.policy-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-dark);
}

.policy-section h2 i {
  font-size: 1.5rem;
  color: var(--primary-color);
  width: 30px;
}

.policy-grid, .info-grid, .support-grid, .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.policy-card, .info-card, .support-card {
  background: #ffffff;;
  padding: 25px;
  border-radius: var(--radius-md);
  text-align: center;
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.policy-card:hover, .info-card:hover, .support-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.policy-card i, .info-card i, .support-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.steps {
  display: grid;
  gap: 25px;
  margin-top: 25px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.delivery-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #ffffff;
  border-radius: var(--radius-md);
}

.timeline-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section {
  margin-bottom: 50px;
}

.faq-section h2 {
  margin-bottom: 30px;
  color: #ffffff;
}

.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  transition: var(--transition);
  background: #ffffff;
}

.faq-question:hover {
  background: #ffffff;
}

.faq-question i {
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 25px;
  margin: 0;
}

/* Utility Classes */
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }
.pt-4 { padding-top: 40px; }
.pt-5 { padding-top: 50px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }
.pb-4 { padding-bottom: 40px; }
.pb-5 { padding-bottom: 50px; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.d-inline-flex { display: inline-flex; }

.align-items-center { align-items: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

.gap-1 { gap: 10px; }
.gap-2 { gap: 20px; }
.gap-3 { gap: 30px; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.font-weight-bold { font-weight: 700; }
.font-weight-medium { font-weight: 500; }

.text-muted { color: var(--text-muted); }
.text-primary { color: var(--primary-color); }
.text-success { color: var(--success); }
.text-error { color: var(--error); }

.bg-white { background: var(--bg-white); }
.bg-light { background: var(--bg-light); }

.border { border: 1px solid var(--border-light); }
.border-radius { border-radius: var(--radius-md); }
.border-radius-sm { border-radius: var(--radius-sm); }
.border-radius-lg { border-radius: var(--radius-lg); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.overflow-hidden { overflow: hidden; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }

.cursor-pointer { cursor: pointer; }
.transition { transition: var(--transition); }

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--border-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* Focus Styles */
:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .btn,
    .product-actions {
        display: none !important;
    }

    body {
        background: white;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }
}

/* Mobile Filter Drawer */

.mobile-filter-btn{
display:none;
background:#000;
color:#fff;
border:none;
padding:10px 18px;
border-radius:30px;
margin-bottom:20px;
cursor:pointer;
}

.filter-overlay{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
opacity:0;
visibility:hidden;
transition:0.3s;
z-index:999;
}

.filter-overlay.active{
opacity:1;
visibility:visible;
}

.filter-close{
display:none;
position:absolute;
top:15px;
right:15px;
background:none;
border:none;
font-size:20px;
cursor:pointer;
}

@media (max-width:768px){

.mobile-filter-btn{
display:inline-block;
}

.shop-sidebar{
position:fixed;
top:0;
left:-100%;
width:280px;
height:100%;
background:#000000;
z-index:1000;
overflow-y:auto;
transition:0.3s;
padding:20px;
}

.shop-sidebar.active{
left:0;
}

.filter-close{
display:block;
}

}

.menu-toggle{
    background:none;
    border:none;
    font-size:22px;
    cursor:pointer;
    display:none;
}

@media (max-width:768px){
    .menu-toggle{
        display:block;
    }
}

