/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

/* Header */
/* Header */
header {
    background-color: #000;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;  /* Align content to bottom */
    align-items: center;        /* Center content horizontally */
    height: 150px;              /* Adjust height as needed */
    padding: 0;
}

/* Nav inside Header */
nav {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Navigation List */
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

/* Navigation Items */
nav ul li {
    margin: 0 15px;
}

/* Navigation Links */
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}




/* Filter Section */
.filter-section {
    text-align: center;
    padding: 0px;
}

.filter-section input {
    width: 50%;
    padding: 0px;
}

/* Product Grid */
.product-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0px;
}

.product {
    background-color: #fff;
    border-radius: 5px;
    padding: 10px;
    margin: 10px;
    text-align: center;
    width: 200px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
}

.product img {
    width: 100%;
    border-radius: 5px;
}

.product h2 {
    font-size: 18px;
    margin: 5px 0;
}

/* Footer */
footer {
    background-color: #000;
    color: white;
    text-align: center;
    
}
.carousel-container {
    overflow: hidden;
    width: 300px;
    height: 50px;
    text-align: center;
    position: relative;
}
.carousel-inner > .item > img,
  .carousel-inner > .item > a > img
   {
    width: 70%;
    margin: auto;
   }
   .center-text
    { 
        text-align: center; margin-top: 20px;
     }
     .info-section {
        display: flex;
        justify-content: space-around;
        align-items: center;
        background-color: #f8f8f8;
        padding: 20px;
        margin-top: 20px;
    }
    
    .info-box {
        text-align: center;
        max-width: 250px;
    }
    
    .info-box img {
        width: 75px; 
        margin-bottom: 10px;
    }
    
    .info-box h3 {
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 5px;
    }
    
    .info-box p {
        font-size: 14px;
        color: #555;
    }
    /* Footer */

    .footer {
        background-color: #f4f0f1;
        padding: 40px 20px;
        font-family: "Arial", sans-serif;
        color: #333;
    }
    
    .footer-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .footer-section {
        flex: 1;
        min-width: 200px;
        margin: 10px;
    }
    
    .footer-section h3 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 15px;
        text-transform: uppercase;
        justify-content: center;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 10px;
    }
    
    .footer-section ul li a {
        text-decoration: none;
        color: #555;
        font-size: 14px;
    }
    
    .footer-section ul li a:hover {
        color: #000;
    }
    
    .newsletter input {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        margin-top: 10px;
    }
    
    .newsletter button {
        background-color: black;
        color: white;
        border: none;
        padding: 10px;
        cursor: pointer;
        width: 100%;
        margin-top: 10px;
    }
    
    .newsletter button:hover {
        background-color: #444;
    }
    
    .social-icons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
        justify-content: center;
    }
    
    .social-icons img {
        width: 25px;
        height: 25px;
        transition: 0.3s;
        justify-content: right;
    }
    
    .social-icons img:hover {
        opacity: 0.7;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 20px;
        border-top: 1px solid #ddd;
        padding-top: 10px;
    }
    
    .currency-selector select {
        padding: 5px;
        border: 1px solid #ccc;
        background: white;
        font-size: 14px;
        cursor: pointer;
    }








    /* ABOUT US PAGE STYLING */
    .video-container {
        display: flex;
        justify-content: center; /* Centers horizontally */
        align-items: center; /* Centers vertically */
        width: 100%;
        height: auto;
        padding: 20px 0;
        background-color: #f8f8f8; /* Optional background */
    }
    
    .video-container video {
        width: 80%; /* Adjust width as needed */
        max-width: 900px; /* Prevents video from being too large */
        height: auto;
        border-radius: 10px; /* Optional rounded corners */
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional shadow */
    }
    
/* ABOUT US content */


/* Reset default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section styling */
.content-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 10%;
    gap: 50px;
}

/* Text content */
.text-container {
    flex: 1;
    text-align: center;
    font-family: "Times New Roman", serif;
    color: #000;
}

.text-container h2 {
    font-size: 28px;
    font-style: italic;
    margin-bottom: 15px;
}

.text-container p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Image styling */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}




/* NEW NOW + COMBO + NECKLACES +EARRINGS +RINGS+ BRACELETS PAGE STYLE COMMANDS */


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



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    background: #fdfdfd;
    padding: 10px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.product-info {
    margin-top: 10px;
    font-size: 16px;
    color: #0c0000;
}

.price {
    font-weight: bold;
    color: #030000;
}

.add-to-cart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .add-to-cart {
    opacity: 1;
}

/* MEMBERSHIP PAGE- FOOTER */


body {
    font-family: 'Arial', sans-serif;
    text-align: center;
    color: #333;
    margin: 0;
    padding: 0;
}

.how-it-works {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 20px 0;
}

.step {
    max-width: 300px;
}

.step img {
    height: 50px;
}

.join-form {
    margin-top: 30px;
}

.join-form h2 {
    font-size: 28px;
}

.join-form form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    max-width: 400px;
    margin: auto;
}

.join-form input, .join-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background-color: #fcfcfc;
    color: #333;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
}

.lock-icon {
    margin-top: 20px;
    height: 100px;
}


/* Contact Section Styling */





/* Reset styling for consistency */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Body styling specifically for Contact page */
.contact-page {
    width: 100%;
    height: 100vh; /* Full viewport height */
    background-color: #f9f9f9; /* Soft off-white background */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Wrapper ensures content is centered properly */
.contact-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 20px;
    width: 100%;
}

/* Container holding the form content */
.contact-container {
    width: 100%;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contact Section Styling */
.contact-section {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;
}

/* Headings and address formatting */
.contact-section h1 {
    margin-bottom: 10px;
    font-size: 2em;
    color: #333;
}

.contact-section p,
.contact-section address {
    margin-bottom: 20px;
    color: #555;
}

/* Form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    
    
}

/* Left-aligned labels with centered fields */
.contact-form label {
    width: 100%;
    text-align: left;
    font-weight: bold;
    color: #444;
    justify-content: left;
}

/* Input and textarea styling */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

/* Button styling */
.contact-form button {
    padding: 10px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: 0.3s ease;
}

.contact-form button:hover {
    background-color: #555;
}

/* Ensure footer sticks to the bottom even on short content pages */
footer {
    width: 100%;
    margin-top: auto;
}
/* PRIVACY POLICY PAGE styling */

/* Content styling with dedicated classes */
.privacy-heading {
    text-align: left;
    margin-left: 30px;
    color: #555;
}

.privacy-subheading {
    text-align: left;
    margin-left: 30px;
    color: #666;
    font-size: 1.2em;
}

.privacy-text {
    text-align: left;
    margin-left: 30px;
    margin-bottom: 15px;
    color: #333;
}

.privacy-list {
    text-align: left;
    margin-left: 40px;
    padding-left: 10px;
}

/* Link styling (optional) */
a {
    color: #007BFF;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* PARTNERSHIP STYLING */
.partnership-content {
    padding: 40px 20px;
    background: #fdfdfd;
    color: #333;
    text-align: center;
  }

  .partnership-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .partnership-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #484646;
  }

  .partnership-intro {
    font-size: 1.5rem;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  .benefits-title, .cta-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #484646;
  }

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

  .benefits-list li {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .benefit-icon {
    margin-right: 8px;
  }

  .cta-text {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }

  .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background: #484646;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }

  .cta-button:hover {
    background: #484646;
  }


  /* TERMS OF SERVICES PAGE + MEMBERSHIP + PARTNERSHIP + RETURNS AND REFUNDS + SHIPPING AND DELIVERY + PRIVACY POLY + IMAGE POLICY + FAQ's  STYLING */

  .tos-content {
    padding: 40px 20px;
    background: #f7f7f7;
    color: #333;
    line-height: 1.6;
  }

  .tos-container {
    max-width: 800px;
    margin: 0 auto;
  }

  .tos-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: left;
  }

  .tos-heading {
    font-size: 1.8rem;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    text-align: left;
    font-weight: bold;
  }

  .tos-text {
    font-size: 1.5rem;
    margin-bottom: 15px;
    text-align: left;
  }

  .tos-link {
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }

  .tos-link:hover {
    text-decoration: underline;
  }

  /* CATEGORY 1 STYLING  */

  body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    margin: 0;
    padding: 0px;
    color: #333;
  }
  
  .product-page {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .product-grid {
    display: flex;
    gap: 40px;
  }
  
  .product-image img {
    width: 500px;
    border-radius: 8px;
  }
  
  .product-info {
    max-width: 600px;
  }
  
  .brand-name {
    font-size: 16px;
    color: #555;
    margin-bottom: 4px;
  }
  
  .product-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 6px;
  }
  
  .product-code {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
  }
  
  .enquiry-box p {
    font-size: 14px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
  }
  
  .whatsapp-icon {
    width: 18px;
    margin-left: 5px;
  }
  
  .enquire-button {
    padding: 10px 24px;
    border: 1px solid #000;
    background-color: white;
    font-size: 16px;
    cursor: pointer;
  }
  
  .product-description {
    margin-top: 30px;
  }
  
  .product-description h3 {
    justify-content: left;
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .product-description ul {
    justify-content: left;
    list-style: disc;
    padding-left: 20px;
    line-height: 1.6;
  }
  
  .product-description p {
    justify-content: left;
    margin-top: 20px;
    font-size: 14px;
  }
  

  /* CART  */
  /* --- Cart Top Bar --- */
.cart-topbar {
    background-color: #040404;
    color: white;
    font-size: 12px;
    padding: 6px 0;
    justify-content: center;
}

/* --- Cart Main Header --- */
.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    background-color: white;
    border-bottom: 1px solid #ddd;
}

.cart-header-left, .cart-header-center, .cart-header-right {
    flex: 1;
    text-align: center;
}

.cart-header-left {
    text-align: left;
}

.cart-header-right {
    text-align: right;
}

.cart-header a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.cart-header a:hover {
    text-decoration: underline;
}

/* --- Cart Checkout Steps --- */
.cart-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    font-size: 16px;
    background-color: #f9f9f9;
    gap: 10px;
}

.cart-step {
    color: #999;
}

.cart-step.active {
    color: #e60073;
    font-weight: bold;
}

.cart-arrow {
    color: #ccc;
}

/* --- Cart Main Content --- */
.cart-content {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    text-align: center;
}

.cart-content--filled {
    align-items: stretch;
    text-align: left;
}

.cart-message {
    font-size: 24px;
    margin-bottom: 30px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(280px, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    display: flex;
    gap: 20px;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    align-items: center;
}

.cart-item-media img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 10px;
    background-color: #f6f6f6;
}

.cart-item-info h3 {
    margin: 0 0 8px;
    font-size: 18px;
}

.cart-item-price {
    margin: 0 0 12px;
    font-weight: 600;
}

.cart-item-qty {
    font-weight: 400;
    font-size: 14px;
    color: #666;
}

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

.cart-inline-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-inline-form input[type='number'] {
    width: 60px;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.cart-inline-form button {
    padding: 6px 14px;
    border-radius: 20px;
    border: none;
    background-color: #f0f0f0;
    cursor: pointer;
}

.cart-inline-form button:hover {
    background-color: #e0e0e0;
}

.cart-link {
    background: none;
    border: none;
    color: #e60073;
    cursor: pointer;
    padding: 0;
    font-weight: 600;
}

.cart-item-total {
    margin-left: auto;
    font-size: 18px;
    font-weight: 700;
}

.cart-summary {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid #eee;
    height: fit-content;
}

.cart-summary h3 {
    margin-top: 0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin: 12px 0;
    font-size: 14px;
}

.summary-total {
    font-size: 18px;
    font-weight: 700;
    border-top: 1px solid #f0f0f0;
    padding-top: 12px;
}

/* --- Cart Button --- */
.cart-btn-primary {
    display: inline-block;
    background-color: #040404;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.cart-btn-primary:hover {
    background-color: #040404;
}

.cart-btn-block {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
}

.cart-btn-secondary {
    width: 100%;
    border: 1px solid #222;
    background-color: transparent;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
}

.cart-btn-secondary:hover {
    background-color: #222;
    color: #fff;
}

.cart-clear-form {
    margin-top: 10px;
    text-align: center;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .cart-header {
        flex-direction: column;
        gap: 10px;
    }

    .cart-steps {
        font-size: 14px;
        flex-wrap: wrap;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-total {
        margin-left: 0;
    }
}


/* --- SINGLE CATEGORY DETAIL PAGE STYLING COMMAND --- */
 /* --- Global Styles --- */
 body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
    background-color: #fff;
  }
  
  /* --- Wrapper Layout --- */
  .category-product-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
  }
  
  /* --- Left: Image Gallery --- */
  .category-image-section {
    flex: 1;
  }
  .category-main-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
  }
  .category-thumbnail-row {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }
  .category-thumbnail {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
  }
  .category-thumbnail:hover {
    border-color: #d4af37;
  }
  
  /* --- Right: Info Section --- */
  .category-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .category-brand-name {
    font-size: 22px;
    font-weight: 600;
    color: #060606;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  .category-product-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  /* --- Badges --- */
  .category-badge-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .category-badge {
    background-color: #f8f0d7;
    color: #080808;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
  }
  
  /* --- Pricing Block --- */
  .category-pricing-block {
    font-size: 16px;
  }
  .category-current-price {
    font-size: 24px;
    font-weight: bold;
    color: #222;
  }
  .category-original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
  }
  .category-discount {
    color: #d43f3a;
    margin-left: 10px;
    font-weight: 600;
  }
  .category-inclusive-text {
    font-size: 12px;
    color: #666;
  }
  .category-offer {
    font-size: 18px;
    color: #007600;
    margin-top: 5px;
  }
  .category-deal-price {
    font-weight: bold;
  }
  .category-delivery-estimate {
    margin-top: 8px;
    color: #2a2a2a;
  }
  
  /* --- Buttons --- */
  .category-add-to-cart-form {
    margin-top: 20px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    padding: 16px;
    background-color: #fff;
  }
  .category-quantity-field {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
  }
  .category-quantity-field label {
    font-weight: 600;
  }
  .category-quantity-field input[type="number"] {
    width: 80px;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
  }
  .category-action-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
  }
  .category-btn {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  .category-btn-primary {
    background-color: #030303;
    color: #fff;
  }
  .category-btn-primary:hover {
    background-color: #020202;
  }
  .category-btn-outline {
    background-color: transparent;
    border: 2px solid #030303;
    color: #080808;
  }
  .category-btn-outline:hover {
    background-color: #f9f6ec;
  }
  
  /* --- Benefits --- */
  .category-benefit-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .category-benefit {
    background-color: #f4f4f4;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  /* --- Description --- */
  .category-product-description {
    border-top: 1px solid #e0e0e0;
    padding-top: 20px;
    justify-content: left;
  }
  .category-desc-heading {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    justify-content: left;
  }
  .category-detail-list {
    list-style: none;
    padding-left: 0;
    justify-content: left;
  }
  .category-detail-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    font-size: 15px;
    justify-content: left;
  }
  
