@import url('https://fonts.googleapis.com/css2?family=Playfair:ital,opsz,wght@0,5..1200,300..900;1,5..1200,300..900&family=Poppins&display=swap');


/* navbar */
body{
    background-color: #000;
    font-family: 'Poppins', sans-serif;
    
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


  /* Navbar */
  .navbar {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0), black);
  }
  
  .nav-item {
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.3s ease;
  }
  
  .nav-item:hover {
    transform: translateY(-4px);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  }
  
  /* Nav Links */
  .nav-link {
    font-size: 18px;
    transition: color 0.3s ease;
    color: #ccc;
  }
  
  .nav-link:hover {
    color: #fff;
  }
  
  /* Underline Animation */
  .underline {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: goldenrod;
    transition: width 0.4s ease;
  }
  
  .nav-item:hover .underline {
    width: 100%;
  }
  
  /* Account Icon Animation */
  .account {
    display: flex;
    align-items: center;
    position: relative;
    cursor: pointer;
  }
  
  .account i {
    transition: transform 0.4s ease;
  }
  
  .login-status {
    position: absolute;
    left: 50px;
    opacity: 0;
    font-size: 1rem;
    color: #ff8c00;
    font-weight: 700;
    background-color: transparent;
    padding: 5px;
    border-radius: 5px;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateX(-20px);
  }
  
  .account:hover .login-status {
    opacity: 1;
    transform: translateX(0);
  }
  
  .account:hover i {
    transform: translateX(-8px);
  }
  .logout-button {
    cursor: pointer;
    font-weight: 500;
    border: 1px solid white;
    color: white;
    border-radius: 40px;
    text-decoration: none;
    padding:  5px 20px 5px 20px;
    transition: background-color 0.3s ease, transform 0.5s ease;
  }
  .logout-button:hover {
    transform: translateY(-5px);
    background-color: white;
    color: black;
  }



  /* Background Video */
.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    opacity: 0.7;
}

/* Home Section */
.home {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.18), black);
    color: #fff;
    padding-top: 70px; /* Add padding to avoid overlap with fixed navbar */
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 60px 20px;
    color: #fff;
    max-width: 800px; /* Limit width for better readability */
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: goldenrod;
    text-shadow: 0 4px 10px rgba(255, 140, 0, 0.6);
    margin-bottom: 20px;
    animation: fadeInDown 1.2s ease;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #ddd;
    animation: fadeIn 1.8s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-description {
        font-size: 0.9rem;
    }
}

/* Fade Animations */
@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Category Section */
.category-sec {
    margin: 0;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(145deg, #1b1b1b, #111);
    color: #fff;
}

.c-hd-title h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 700;
    color: goldenrod;
    text-shadow: 0 4px 10px rgba(255, 140, 0, 0.6);
    margin-bottom: 40px;
    text-align: center;
}

.c-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    padding: 0 15px;
}

.c-card {
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(255, 215, 0, 0.15); /* Softer shadow in golden tone */
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
    overflow: hidden;
}

.c-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.c-card h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #ffd700; /* Light golden color */
}

.c-card p {
    font-size: 1rem;
    color: #bfbfbf;
}

.c-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3); /* Enhance the shadow on hover */
}

.c-card:hover img {
    transform: scale(1.05); /* Slight zoom on hover */
}

@media (max-width: 768px) {
    .c-container {
        grid-template-columns: 1fr; /* Each card takes full width */
        justify-items: center;
    }
    .c-card {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .c-hd-title h1 {
        font-size: 2rem;
    }
}

/* PRODUCT EARRING HEADING */
   /* PRODUCT EARRING HEADING */
   .pr-er-heading {
    padding-top: 50px;
    padding-bottom: 20px;
    background: linear-gradient(0deg, black, rgba(0, 0, 0, 0.5)), url(/images/diabg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Dark Theme for Filter and Search Bar */

.prhr-container {

    background: linear-gradient(0deg, rgba(0, 0, 0, 0.5), black), url(/images/bg.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 20px;
}

/* Search Bar Styling */
.search-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 60px;
}

.responsive-search-bar {
    width: 70%;
    padding: 12px 20px;
    border: 2px solid #444;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    transition: all 0.4s ease;
    box-shadow: 0px 4px 15px rgba(255, 215, 0, 0.2);
    background-color: #222;
    color: #f5f5f5;
}

.responsive-search-bar:focus {
    width: 90%;
    border-color: goldenrod;
    background-color: #333;
    box-shadow: 0px 8px 20px rgba(255, 215, 0, 0.3);
}

@media screen and (max-width: 768px) {
    .responsive-search-bar {
        width: 80%;
    }

    .responsive-search-bar:focus {
        width: 85%;
    }
}

@media (max-width: 480px) {
    .responsive-search-bar {
        width: 70%;
    }

    .responsive-search-bar:focus {
        width: 100%;
    }
}

/* Filter Dropdown Styling */
.filter-container {
    margin: 20px 0 30px;
    border-bottom: 2px solid grey;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}

#brand-filter-earring {
    width: 25%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 12px;
    background-color: #222;
    font-size: 16px;
    color: #f5f5f5;
    box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

#brand-filter-earring:hover,
#brand-filter-earring:focus {
    border-color: goldenrod;
    box-shadow: 0px 6px 12px rgba(255, 215, 0, 0.3);
}

#brand-filter-earring option {
    font-size: 16px;
    color: #333;
    padding: 10px;
}

#brand-filter-ring {
    width: 25%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 12px;
    background-color: #222;
    font-size: 16px;
    color: #f5f5f5;
    box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

#brand-filter-ring:hover,
#brand-filter-ring:focus {
    border-color: goldenrod;
    box-shadow: 0px 6px 12px rgba(255, 215, 0, 0.3);
}

#brand-filter-ring option {
    font-size: 16px;
    color: #333;
    padding: 10px;
}

#brand-filter-necklace {
    width: 25%;
    padding: 12px 15px;
    border: 1px solid #444;
    border-radius: 12px;
    background-color: #222;
    font-size: 16px;
    color: #f5f5f5;
    box-shadow: 0px 4px 8px rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-down"><polyline points="6 9 12 15 18 9"></polyline></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 12px;
}

#brand-filter-necklace:hover,
#brand-filter-necklace:focus {
    border-color: goldenrod;
    box-shadow: 0px 6px 12px rgba(255, 215, 0, 0.3);
}

#brand-filter-necklace option {
    font-size: 16px;
    color: #333;
    padding: 10px;
}

/* Product Grid Styling */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    padding-top: 20px;
}

/* Product Card Styling */
.product-card {
    background-color: #222;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: #f5f5f5;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.2);
}

.product-image {
    padding: 20px;
    height: 355px;
    text-align: center;
    background-color: #333;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

.product-image img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Product Info Styling */
.product-info {
    padding: 10px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 5px;
}

.product-price {
    font-size: 1rem;
    color: goldenrod;
}

.view-product-btn {
    background-color: goldenrod;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.view-product-btn:hover {
    background-color: #f5f5f5;
}

.add-to-cart-btn {
    color: goldenrod;
    font-size: 1.5rem;
}

.add-to-cart-btn:hover {
    color: #f5f5f5;
}


/* Cart styling */
.cart {
    margin: 40px auto;
    padding: 25px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    max-width: 600px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cart h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item:hover {
    background-color: #f9f9f9;
}

.cart-item-info {
    display: flex;
    align-items: center;
}

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.item-quantity {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    padding: 0 12px;
}

.cart-total {
    text-align: right;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 25px;
    color: #333;
    padding-top: 15px;
    border-top: 2px solid #eee;
}

/* For mobile responsiveness */
@media (max-width: 768px) {
    .cart {
        padding: 20px;
    }

    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-item-controls {
        margin-top: 10px;
    }

    .cart-item img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    .cart h3 {
        font-size: 1.5rem;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .filter-container {
        flex-direction: column;
    }

    #search-bar {
        width: 100%;
        margin-bottom: 10px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}



/* TOGGLE SECTION */
.toggle-section {
    max-height: 5px;
    overflow: hidden;
    transition: max-height 2s ease-in-out;
    background-color: #2c2c2c;


}

.toggle-button {
    background-color: #ffcc00;
    color: #1c1c1c;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 20px 0;
}

/* Visible state */
.toggle-section.active {
    max-height: 2500px;
    /* Adjust based on the content's height */
}

.toggle-section .prhr-containe {
    margin: 0;
}


/* 2nd */

.toggle-section2 {
    max-height: 5px;
    overflow: hidden;
    transition: max-height 2s ease-in-out;
    background-color: #2c2c2c;


}

.toggle-button2 {
    background-color: #ffcc00;
    color: #1c1c1c;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 20px 0;
}

/* Visible state */
.toggle-section2.active {
    max-height: 2300px;
    /* Adjust based on the content's height */
}

.toggle-section2 .prhr-containe {
    margin: 0;
}

/* 3rd */
.toggle-section3 {
    max-height: 5px;
    overflow: hidden;
    transition: max-height 2s ease-in-out;
    background-color: #2c2c2c;


}

.toggle-button3 {
    background-color: #ffcc00;
    color: #1c1c1c;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: inline-block;
    margin: 20px 0;
}

/* Visible state */
.toggle-section3.active {
    max-height: 2300px;
    /* Adjust based on the content's height */
}

.toggle-section3 .prhr-containe {
    margin: 0;
}


/* FOOTER */

/* fooooter */
.footer_section {
    background-color: #222831;
    color: #ffffff;
    padding: 75px 40px 0;
    text-align: center;
}

.footer_section h4 {
    font-size: 28px;
}

.footer_section p {
    color: #dbdbdb;
}


.footer_section .footer_contact .contact_link_box {
    display: flex;
    flex-direction: column;
}

.footer_section .footer_contact .contact_link_box a {
    margin: 5px 0;
    color: #ffffff;
}

.footer_section .footer_contact .contact_link_box a:hover {
    color: #ffbe33;
}



.footer_section .footer_social a:hover {
    color: #ffbe33;
}

.footer_section .footer-info {
    text-align: center;
    margin-top: 25px;
}

.footer_section .footer-info p {
    color: #ffffff;
    margin: 0;
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;400&display=swap');


.cardimage {
    overflow: hidden;
    width: 100%;
    height: 100%;
}


.cardimage img {
    display: block;
    width: 100%;
    transition: transform 0.5s;
    cursor: pointer;
    background-color: #e7e3e3;
}

.cardimage:hover img {
    transform: scale(1.1);
}

.card-body h3 {
    font-size: 20px;
}

.stars a {
    color: orange;
    text-decoration: none;
}

.price a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.card img {
    height: 200px;
}