:root {
    --gold: #D4AF37;
    --dark: #0f3036;
    --light: #f7f9f9;
    --text-dark: #333;
    --text-light: #777;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

/* Header */
.agini-header {
    background-color: white;
    border-bottom: 1px solid #e5e5e5;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.agini-logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}

.main-nav .nav-link {
    color: var(--text-dark) !important;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 10px 15px;
    text-transform: uppercase;
    position: relative;
}

.main-nav .nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 15px;
    transition: width 0.3s;
}

.main-nav .nav-link:hover:after {
    width: calc(100% - 30px);
}

.utility-nav .nav-link {
    color: var(--text-dark);
    font-size: 14px;
    padding: 10px 12px;
}

/* Hero Banner */


.hero-banner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-btn {
    background-color: var(--gold);
    color: white;
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: #c19b2c;
    color: white;
}

/* Promo Sections - Matching Tiffany style */
.promo-section {
    padding: 60px 0;
    text-align: center;
}

.promo-section.light {
    background-color: white;
}

.promo-section.dark {
    background-color: var(--dark);
    color: white;
}

.promo-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.promo-description {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.promo-btn {
    background-color: transparent;
    color: var(--gold);
    padding: 10px 25px;
    border: 1px solid var(--gold);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.promo-btn:hover {
    background-color: var(--gold);
    color: white;
}

/* Product Grid */
.product-grid {
    margin: 60px 0;
}

.section-title {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
    font-family: 'Playfair Display', serif;
}



/* Product Cards */
.product-card {
    margin-bottom: 40px;
    text-decoration: none;
    color: #333;
    display: block;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: #333;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background-color: #f9f9f9;
    margin-bottom: 15px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease;
}

.default-image {
    opacity: 1;
}

.hover-image {
    opacity: 0;
}

.product-image-container:hover .default-image {
    opacity: 0;
}

.product-image-container:hover .hover-image {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #D4AF37;
    color: white;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    font-family: 'Roboto', sans-serif;
}

.product-price {
    font-size: 14px;
    color: #777;
    font-family: 'Roboto', sans-serif;
}

/* Category Filter */
.category-filter {
    margin: 40px 0;
    border-bottom: none;
}

.filter-list {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-item {
    margin: 0 15px;
}

.filter-link {
    color: var(--text-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
}

.filter-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: -1px;
    left: 0;
    transition: width 0.3s;
}

.filter-link:hover:after,
.filter-link.active:after {
    width: 100%;
}

/* Product Cards */
.product-card {
    margin-bottom: 40px;
    text-decoration: none;
    color: var(--text-dark);
    display: block;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    text-decoration: none;
    color: var(--text-dark);
}

.product-image-container {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
    background-color: #f9f9f9;
    margin-bottom: 15px;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.8s ease-in-out !important;
}

.product-card:hover .product-image {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--gold);
    color: white;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.product-price {
    font-size: 14px;
    color: var(--text-light);
}

/* Quick View Button */
.quick-view-btn {
    position: absolute;
    bottom: -40px;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    border: none;
    padding: 10px 0;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s;
    opacity: 0;
}

.product-image-container:hover .quick-view-btn {
    bottom: 0;
    opacity: 1;
}

/* Appointment Section */
.appointment-section {
    padding: 80px 0;
    background-image: url('https://images.unsplash.com/photo-1603974371315-48b7c7267aae?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
    text-align: center;
}

.appointment-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.appointment-content {
    position: relative;
    z-index: 1;
}

/* Newsletter */
.newsletter-section {
    background-color: #fff;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.newsletter-title {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.newsletter-description {
    font-size: 16px;
    color: #000;
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    border: 1px solid #444;
    padding: 12px 15px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 0 !important;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-btn {
    background-color: var(--gold);
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 0 !important;
}

.newsletter-btn:hover {
    background-color: #c19b2c;
    color: white;
}

/* Footer */
.agini-footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-title {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #000;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #000;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold);
}

.social-icons a {
    color: white;
    font-size: 16px;
    margin-right: 15px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #000;
}
.copyright {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgb(189 189 189 / 89%);
    font-size: 12px;
    color: #999;
}

/* Modal */
.product-modal .modal-content {
    border-radius: 0;
    border: none;
}

.product-modal .modal-header {
    border-bottom: none;
    padding: 20px;
}

.product-modal .modal-body {
    padding: 0 20px 20px;
}

.product-modal .modal-title {
    font-size: 24px;
    font-weight: 300;
}

.product-modal .product-price {
    font-size: 18px;
    color: var(--gold);
    margin: 15px 0;
}

.product-modal .product-description {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
}

.product-modal .btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    padding: 12px 30px;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-modal .btn-primary:hover {
    background-color: #c19b2c;
    border-color: #c19b2c;
}

/* Responsive */
@media (max-width: 991px) {
    .main-nav {
        margin-top: 15px;
    }

    .filter-list {
        flex-wrap: wrap;
    }

    .filter-item {
        margin: 5px 10px;
    }

    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-description, .promo-description {
        font-size: 14px;
    }

    .promo-title, .section-title {
        font-size: 24px;
    }
}

.mothers-day-promo {
    background-color: #f8f9fa;
}

.promo-title {
    font-family: 'Playfair Display', serif;
    color: #333;
    letter-spacing: 1px;
}

.category-card {
    transition: transform 0.3s ease;
}

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

.category-card .card {
    transition: box-shadow 0.3s ease;
}

.category-card:hover .card {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-card h3 {
    color: #333;
    transition: color 0.3s ease;
}

.category-card:hover h3 {
    color: #D4AF37;
    /* Gold color for hover */
}

.mothers-day-gift {
    background-color: #f8f5f2;
    /* Tiffany-like background */
    padding: 80px 0;
}

.gift-content {
    max-width: 600px;
    margin: 0 auto;
}

.gift-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: #333;
    margin-bottom: 1.5rem;
}

.gift-text {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.8;
    color: #333;
}

.gift-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    color: #333;
    border: 1px solid #333;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.gift-btn:hover {
    background-color: #333;
    color: #fff;
}

@media (max-width: 768px) {
    .gift-title {
        font-size: 2rem;
    }

    .gift-text {
        font-size: 1.1rem;
    }
}

.menu-link {
    color: #000 !important;
    font-weight: 400 !important;
    font-size: 12px ! IMPORTANT;
    font-family: 'Roboto', sans-serif !important;
    line-height: 16px !important;
}

.top-links-item>a {

    font-weight: 500 !important;

    color: #000 !important;
}

.top-cart-number::before {

    background-color: #d4af37 !important;
}

#sort-select {
    height: 70px;
    border-radius: unset;
    font-weight: 500;
}

.filter-btn:hover {
    border: 1px solid #000;
}

.filter-btn {
    border: 1px solid #8b8b8b4f;
    border-radius: 0;
    height: 70px;
    padding: 0 40px !important;
    font-size: 14px;
    font-weight: 500;
}

.show-more .btn-champagne {
    margin: 24px 0 0;
    padding-bottom: 22px;
    padding-top: 22px;
    width: unset;
    z-index: 0;
    border-radius: unset;
    /* background-color: #ddbf5f;
    border-color: #ddbf5f; */
}

@media (min-width: 1200px) {
    .show-more .btn-champagne {
        width: 448px;
    }
}

.logo_text {

    font-family: "Playfair Display", serif;
    /* font-optical-sizing: auto; */
    font-weight: 100;
    font-style: normal;
    font-size: 100px;
    text-transform: uppercase;
    text-align: center;
    color: black;
    margin-bottom: -20px;
    margin-top: -23px;

}

@media (max-width: 1200px) {
    .logo_text {
        font-size: 70px;
    }
}

@media (max-width: 992px) {
    .logo_text {
        font-size: 50px;
        margin-bottom: -10px;
        margin-top: -10px;
    }

    
    .gift-title {
        font-size: 2rem;
    }
}

@media (max-width: 900px) {
    .logo_text {
        font-size: 50px;
        /* margin-bottom: -10px;
        margin-top: -10px; */
    }

  
    .gift-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .logo_text {
        font-size: 50px;
    }

    
    .gift-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .logo_text {
        font-size: 30px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

   

   
    .gift-title {
        font-size: 1.8rem;
    }
}

.form-control:active, .form-control:focus {
    
    background-color: white !important;
    padding: 20px;
}
.slider-text-overlay{
        background-color: #00000066;
    padding: 10px;
}
