        /* Global Styles */
       :root {
    --primary: #8130b3;    /* vibrant purple */
    --secondary: #200f3e;  /* dark navy/purple */
    --accent: #f3c200;     /* complementary gold/yellow for buttons/CTAs */
    --light: #f5f5f5;      /* neutral background */
    --dark: #1a0a2e;       /* darker shade for text or footer */
    --success: #5c2d91;    /* secondary purple for hover states or highlights */
}

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
        html { scroll-behavior: smooth; scroll-padding-top: 80px; }
        body { background-color: var(--light); color: var(--dark); line-height: 1.6; overflow-x: hidden; }
        .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 15px; }
        section { padding: 80px 0; }
        h1, h2, h3, h4 { margin-bottom: 15px; color: var(--dark); }
        h2 { font-size: 2.5rem; text-align: center; margin-bottom: 40px; position: relative; }
        h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(to right, var(--primary), var(--secondary)); border-radius: 2px; }
        .btn { display: inline-block; padding: 12px 28px; background: linear-gradient(to right, var(--primary), var(--secondary)); color: #fff; border: none; border-radius: 50px; cursor: pointer; font-weight: 600; text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); }
        .btn:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); }
        .btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
        .btn-outline:hover { background: linear-gradient(to right, var(--primary), var(--secondary)); color: #fff; }
       /* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #200f3e, #8130b3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}
nav.scrolled {
    padding: 10px 0;
    background: linear-gradient(135deg, #200f3e, #8130b3, #5c2d91);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f3c200; /* Gold accent for logo */
    text-decoration: none;
    display: flex;
    align-items: center;
}
.logo span {
    color: #f5f5f5; /* Light accent for part of logo */
}
.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li {
    margin-left: 30px;
}
.nav-links a {
    text-decoration: none;
    color: #f5f5f5; /* Light text for visibility */
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #f3c200; /* Accent underline */
    transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
    color: #f3c200; /* Hover color matches accent */
}

.cart-icon {
    position: relative;
    cursor: pointer;
    color: #f5f5f5;
}
.cart-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #f3c200; /* Accent color for count */
    color: #200f3e; /* Dark text inside count */
    font-size: 0.7rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

        /* Hero */
        .hero { height: 100vh; background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('image/7.jpg'); background-size: cover; background-position: center; color: #fff; display: flex; align-items: center; text-align: center; position: relative; }
        .hero-content { max-width: 800px; margin: 0 auto; animation: fadeIn 1s ease; }
        .hero h1 { font-size: 3.5rem; margin-bottom: 20px; color: #fff; text-shadow: 2px 2px 4px rgba(0,0,0,.5); }
        .hero p { font-size: 1.2rem; margin-bottom: 30px; text-shadow: 1px 1px 2px rgba(0,0,0,.5); }
        /* About */
        .about { background-color: #fff; }
       .about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch; /* ensures both columns match in height */
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.1);
  transition: transform .3s ease;
  display: flex;            /* center image inside */
  align-items: center;      /* vertical alignment */
  justify-content: center;  /* horizontal alignment */
}

.about-image img {
  width: 100%;
  height: 100%;             /* make it match text column height */
  object-fit: cover;        /* keeps proportions while filling space */
  display: block;
}
        .about-image:hover { transform: translateY(-5px); }
        /* Products */
        .products { background-color: #f9f9f9; }
        .products-controls { display: flex; justify-content: space-between; flex-wrap: wrap; margin-bottom: 30px; gap: 15px; }
        .search-box { padding: 12px 20px; border: 1px solid #ddd; border-radius: 50px; width: 300px; max-width: 100%; transition: all .3s ease; }
        .search-box:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(255,107,107,.2); }
        .category-filter { display: flex; flex-wrap: wrap; gap: 10px; }
        .filter-btn { padding: 8px 16px; background: #fff; border: 1px solid #ddd; border-radius: 50px; cursor: pointer; transition: all .3s ease; }
        .filter-btn.active, .filter-btn:hover { background: linear-gradient(to right, var(--primary), var(--secondary)); color: #fff; border-color: transparent; }
        .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 30px; }
        .product-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,.05); transition: transform .3s ease, box-shadow .3s ease; position: relative; }
        .product-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,.1); }
        .product-badge { position: absolute; top: 10px; right: 10px; background: var(--accent); color: #fff; padding: 5px 10px; border-radius: 20px; font-size: .8rem; font-weight: bold; z-index: 1; }
        .product-image { height: 200px; overflow: hidden; }
        .product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
        .product-card:hover .product-image img { transform: scale(1.05); }
        .product-info { padding: 20px; }
        .product-title { font-size: 1.2rem; margin-bottom: 10px; }
        .product-desc { color: #777; margin-bottom: 15px; font-size: .9rem; }
        .product-price { font-weight: 700; color: var(--primary); font-size: 1.2rem; margin-bottom: 15px; }
        .product-actions { display: flex; justify-content: space-between; align-items: center; }
        .quantity { display: flex; align-items: center; border: 1px solid #ddd; border-radius: 50px; overflow: hidden; }
        .quantity-btn { background: none; border: none; width: 30px; height: 30px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; }
        .quantity-input { width: 30px; height: 30px; text-align: center; border: none; border-left: 1px solid #ddd; border-right: 1px solid #ddd; font-weight: bold; }
   /* Cart */
.cart { background-color: #fff; }
.cart-container { display: flex; flex-wrap: wrap; gap: 30px; }
.cart-items { flex: 2; min-width: 300px; }
.cart-summary { flex: 1; min-width: 300px; background: #f9f9f9; border-radius: 10px; padding: 20px; height: fit-content; position: sticky; top: 100px; }
.cart-item { display: flex; border-bottom: 1px solid #eee; padding: 15px 0; animation: slideIn .3s ease; }
.cart-item-image { width: 100px; height: 100px; border-radius: 10px; overflow: hidden; margin-right: 15px; flex-shrink: 0; }
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-details { flex: 1; }
.cart-item-title { font-weight: 600; margin-bottom: 5px; }
.cart-item-price { color: var(--primary); font-weight: 700; margin-bottom: 10px; }
.cart-item-actions { display: flex; align-items: center; }
.remove-item { margin-left: 15px; color: #ff4d4d; cursor: pointer; transition: color .3s ease; }
.remove-item:hover { color: #ff0000; }
.cart-summary h3 { margin-bottom: 20px; text-align: center; }
.summary-line { display: flex; justify-content: space-between; margin-bottom: 10px; }
.summary-total { font-weight: 700; font-size: 1.2rem; border-top: 1px solid #ddd; padding-top: 10px; margin-top: 10px; }
.checkout-btn { width: 100%; text-align: center; margin-top: 20px; padding: 15px; font-size: 1.1rem; }

/* ✅ Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #28a745;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    font-size: 15px;
    z-index: 9999;
    animation: fadeInOut 3s ease forwards;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translateY(20px); }
    10%, 90% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
}


        /* Customer Info Modal */
        .modal-overlay { position: fixed; inset: 0; background-color: rgba(0,0,0,.7); display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; visibility: hidden; transition: all .3s ease; }
        .modal-overlay.active { opacity: 1; visibility: visible; }
        .customer-modal { background: #fff; border-radius: 10px; width: 90%; max-width: 600px; padding: 30px; box-shadow: 0 10px 30px rgba(0,0,0,.2); transform: translateY(-50px); transition: transform .3s ease; max-height: 90vh; overflow-y: auto; }
        .modal-overlay.active .customer-modal { transform: translateY(0); }
        .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
        .modal-header h2 { margin-bottom: 0; }
        .modal-header h2::after { display: none; }
        .close-modal { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: #777; }
        .customer-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
        .form-group-full { grid-column: 1 / -1; }
        .form-label { display: block; margin-bottom: 8px; font-weight: 500; }
        .form-input { width: 100%; padding: 12px 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; transition: all .3s ease; }
        .form-input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 2px rgba(255,107,107,.2); }
        textarea.form-input { min-height: 100px; resize: vertical; }
        .form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; gap: 15px; margin-top: 20px; }
        /* Contact */
        .contact { background-color: #f9f9f9; }
        .contact-container { display: flex; flex-wrap: wrap; gap: 40px; }
        .contact-form { flex: 1; min-width: 300px; }
        .form-group { margin-bottom: 20px; }
        .contact-info { flex: 1; min-width: 300px; }
        .info-item { display: flex; align-items: flex-start; margin-bottom: 25px; }
        .info-icon { font-size: 1.5rem; color: var(--primary); margin-right: 15px; min-width: 30px; }
        /* Footer */
        footer { background-color: var(--dark); color: #fff; padding: 40px 0; text-align: center; }
        .social-links { display: flex; justify-content: center; gap: 20px; margin: 20px 0; }
        .social-links a { color: #fff; font-size: 1.5rem; transition: color .3s ease; }
        .social-links a:hover { color: var(--accent); }
        /* Toast */
        .toast { position: fixed; bottom: 20px; right: 20px; background: var(--success); color: #fff; padding: 15px 25px; border-radius: 5px; box-shadow: 0 5px 15px rgba(0,0,0,.2); z-index: 3000; display: flex; align-items: center; animation: slideInRight .3s ease, fadeOut .5s ease 2.5s forwards; }
        .toast i { margin-right: 10px; }
        /* Animations */
        @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
        @keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes slideInRight { from { opacity: 0; transform: translateX(100px); } to { opacity: 1; transform: translateX(0); } }
        @keyframes fadeOut { from { opacity: 1; } to { opacity: 0; visibility: hidden; } }
        /* Loading */
        .loading { display: inline-block; width: 20px; height: 20px; border: 3px solid rgba(255,255,255,.3); border-radius: 50%; border-top-color: #fff; animation: spin 1s ease-in-out infinite; }
        @keyframes spin { to { transform: rotate(360deg); } }
        /* Responsive */
        @media (max-width: 992px) { h2 { font-size: 2.2rem; } .hero h1 { font-size: 3rem; } .customer-form { grid-template-columns: 1fr; } }
        @media (max-width: 768px) {
            h2 { font-size: 2rem; }
            .hero h1 { font-size: 2.5rem; }
            .products-controls { flex-direction: column; }
            .search-box { width: 100%; }
            .cart-container { flex-direction: column; }
            .cart-summary { position: relative; top: 0; }
            .nav-links { position: fixed; top: 70px; left: -100%; width: 100%; height: calc(100vh - 70px); background: #fff; flex-direction: column; align-items: center; justify-content: flex-start; padding-top: 50px; transition: left .3s ease; gap: 30px; }
            .nav-links.active { left: 0; }
            .nav-links li { margin-left: 0; }
            .mobile-menu-btn { display: block; z-index: 1001; }
            .about-content { flex-direction: column; }
            .contact-container { flex-direction: column; }
        }
        @media (max-width: 576px) { section { padding: 60px 0; } .hero h1 { font-size: 2rem; } .hero p { font-size: 1rem; } .btn { padding: 10px 20px; } .customer-modal { padding: 20px; } .form-actions { flex-direction: column; } .form-actions .btn { width: 100%; } }
        /* Mobile Menu */
        .mobile-menu-btn { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); z-index: 1001; }
        @media (max-width: 768px) { .mobile-menu-btn { display: block; } }
    .social-links a {
    font-size: 22px;
    margin-right: 12px;
    color: #333;  /* dark grey so visible */
    text-decoration: none;
}

.social-links a:hover {
    color: #5e0959; /* hover color matches your button */
}/* Styling */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f9f9f9, #eef2f3);
  text-align: center;
}

.section-title h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.section-title p {
  color: #555;
  margin-bottom: 30px;
}

.testimonial-form {
  max-width: 500px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.testimonial-form input,
.testimonial-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.testimonial-form button {
  padding: 12px;
  background: #67067a;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}

.testimonial-form button:hover {
  background: #c310d3;
}

.testimonial-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card h3 {
  margin-bottom: 8px;
  color: #7e026d;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #444;
}