body {
    background-color: #0f111a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.nav-action-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    cursor: pointer;
    color: #fff;
    transition: opacity 0.2s;
    gap: 8px;
}

.nav-action-item:hover {
    opacity: 0.8;
}

.nav-svg-icon {
    display: block;
}

.nav-action-text {
    font-size: 14px;
    font-weight: 600;
}

.cart-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
section.newsletter-section {
    position: relative;
    bottom: 150px;
}
.hero-card {
    z-index: 5;
}
h2.fw-bold.text-primary.margin-200 {
    margin-top: 200px;
}
.cart-counter {
    position: absolute;
    top: -4px;
    right: -8px;
    background-color: #ef4444;
    color: white;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.nav-cta-btn {
    background-color: #5d5fef;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background-color: #4a4cd9;
}

/* Existing Custom Navbar adjustments */
.custom-navbar {
    background-color: #000000;
    padding: 12px 28px;
    height: 72px;
}

@media (max-width: 768px) {
    .custom-navbar {
        padding: 10px 15px;
        height: 60px;
    }
}

.search-bar-container {
    max-width: 600px;
    width: 100%;
}

.btn, .search-button, .promo-banner button, .hero-card button, .newsletter-box button, .newsletter-v2 button, .editors-picks-section button, .gift-finder-section button, .artist-card button, .showcase-details button {
    border-radius: 6px !important;
}
section.editors-picks-section {
    border-top-left-radius: 60px;
    border-top-right-radius: 60px;
}
.search-input {
    background-color: #ffffff;
    border: none;
    border-radius: 6px 0 0 6px !important;
    padding: 10px 15px;
    margin-right: -1px; /* Overlap to remove gaps */
}

.search-button {
    background-color: #5d5fef;
    border: none;
    border-radius: 0 6px 6px 0 !important;
    padding: 10px 20px;
    color: white;
    margin-left: -1px; /* Overlap to remove gaps */
}

.category-nav {
    display: flex;
    align-items: center;
    justify-content: center; 
    gap: 10px;
    padding: 41px 15px 1px;
    overflow-x: auto;
    white-space: nowrap;
    background: #0d1117;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-nav-section {
    display: flex;
    align-items: center;
    gap: 17px;
}

.category-nav::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 10px;
    color: #ffffff;
    cursor: pointer;
    min-width: 65px;
    text-decoration: none;
    transition: color 0.2s;
}

.category-item:hover {
    color: #fff;
}

.category-icon {
    font-size: 20px;
    margin-bottom: 2px;
    display: block;
}

.nav-divider {
    width: 1px;
    height: 60px;
    background: #30363d;
    margin: 0 10px;
}

.nav-scroll-btn {
    background: transparent;
    border: 1px solid #30363d;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: normal;
    text-align: center;
    line-height: 1.3;
}

.nav-scroll-btn:hover {
    background: #30363d;
    border-color: #8b949e;
}

.promo-banner {
    background-color: #1a1d29;
    border-radius: 6px;
    padding: 15px;
    text-align: center;
    margin: 20px auto;
    max-width: 1296px; /* Matching Bootstrap container default max-width */
    width: calc(100% - 24px); /* Adding some padding for mobile */
}

.main-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* grid-template-rows: 300px 300px 300px; */
    gap: 20px;
    margin-bottom: 40px;
}

.hero-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}



.hero-card-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-image: url('/static/images/navbar-icons/new2.png');
}

.hero-card-right-top {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background-image: url('/static/images/navbar-icons/trinkets.png');
}
h5.modal-title {
    color: black;
}
button.btn-close {
    color: black;
}
.cart-total div {
    color: black;
}
.hero-card-right-bottom {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
    background-image: url('/static/images/navbar-icons/cap-318.png');
}

.hero-card-bottom-left {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
    background-image: url('/static/images/navbar-icons/banner_b.jpg');
}

.hero-card-bottom-middle {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    background-image: url('/static/images/new-images/banner_c.jpg');
}

.hero-card-bottom-right {
    grid-column: 3 / 4;
    grid-row: 3 / 4;
    background-image: url('/static/images/new-images/banner_e.jpg');
}

.hero-card-content {
    position: relative;
    z-index: 2;
}

.price-tag {
    background-color: #fbbf24;
    color: #000;
    padding: 10px 20px;
    width: 24%;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    font-size: 24px;
}

.newsletter-section {
    background-color: #f3f4f6;
    color: #000;
    padding: 60px 0;
    text-align: center;
    border-top-right-radius: 40px;
    border-top-left-radius: 40px;
}

.newsletter-box {
    background: var(--color-primary-100, #f0f1ff);
    border: 2px solid var(--color-primary-200, #e0e2ff);
    border-radius: 12px;
    padding: 24px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.newsletter-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(93, 95, 239, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.newsletter-box .row {
    position: relative;
    z-index: 1;
}

.newsletter-box h3 {
    font-size: 28px;
    color: #1a1d29;
}

.newsletter-box .form-control {
    height: 55px;
    border-radius: 8px;
    border: 2px solid #eee;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.newsletter-box .form-control:focus {
    border-color: #5d5fef;
    box-shadow: none;
}

.newsletter-box .btn-primary {
    height: 55px;
    padding: 0 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #5d5fef;
    border: none;
    transition: all 0.3s ease;
}

button.btn.btn-primary.newsletter-btn {
    position: relative;
    z-index: 23 !important;
    height: 50px;
}
.menu-dropdown-content {
    left: 1px;
}
.best-sellers-section {
    padding: 60px 0;
    color: #000;
    background-color: #f9fafb;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.product-card:hover .quick-view-btn {
    opacity: 1;
    bottom: 20px;
}

.quick-view-btn {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Quick View Modal Customization */
.modal-content-v1 {
    border-radius: 12px;
    border: none;
    overflow: hidden;
}

.qv-image-container {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.qv-details {
    padding: 30px;
}

.qv-price {
    font-size: 24px;
    color: #ef4444;
    font-weight: bold;
    margin: 15px 0;
}

.qv-original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 18px;
    margin-left: 10px;
}

.qv-size-select, .qv-qty-input {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.product-image-container {
    position: relative;
    aspect-ratio: 1/1;
}

.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #6366f1;
    color: white;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 12px;
}

.heart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}



.best-sellers-section{
    border-top-right-radius: 70px;
    border-top-left-radius: 70px;
}

 

.product-info {
    padding: 15px;
    text-align: center;
}

.trending-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.tag-badge {
    background: #2a2d3e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
}

.tag-badge:hover {
    background: #3f4258;
    color: #fff;
}

.footer-v1 {
    background: #0f111a;
    padding: 60px 0 20px;
    border-top: 1px solid #2a2d3e;
    color: #a0a0a0;
}

.footer-v1 h5 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-v1 ul {
    list-style: none;
    padding: 0;
}

.footer-v1 ul li {
    margin-bottom: 10px;
}

.footer-v1 ul li a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-v1 ul li a:hover {
    color: #fff;
}

.gift-finder-section {
    background-color: #161821;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.finder-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.finder-select {
    background-color: #2a2d3e;
    color: #fff;
    border: 1px solid #3f4258;
    padding: 1px 4px;
    border-radius: 2px;
}

.finder-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.finder-cat-item {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    font-size: 12px;
}

.finder-cat-item.active, .finder-cat-item:hover {
    opacity: 1;
}

.finder-cat-item .cat-icon {
    display: block;
    font-size: 24px;
    margin-bottom: 5px;
    background: #2a2d3e;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 12px;
    margin: 0 auto 5px;
}

.artist-spotlight-section {
    background-color: #f9fafb;
    padding: 80px 0;
    color: #000;
}

.artist-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    position: relative;
}

.artist-banner {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.artist-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid #fff;
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.artist-info h3 {
    margin-top: 15px;
    font-weight: bold;
    font-size: 20px;
}

.artist-handle {
    color: #6b7280;
    font-size: 14px;
}

.artist-meta {
    margin: 20px 0;
    font-size: 13px;
    color: #374151;
}

.artist-meta p {
    margin-bottom: 5px;
}

.artist-sale-text {
    color: #ef4444;
    font-weight: bold;
    font-size: 14px;
    margin-bottom: 20px;
}

.artist-grid-products .product-card {
    border: none;
    box-shadow: none;
    background: transparent;
}

.artist-grid-products .product-image-container {
    background: #111;
    border-radius: 8px;
}

.featured-products-showcase {
    background-color: #0f111a;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.product-type-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.product-type-item {
    background: #2a2d3e;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    width: 80px;
}

.product-type-item:hover, .product-type-item.active {
    background: #fff;
    color: #000;
    /* transform: translateY(-5px); */
}

.product-type-item img {
    width: 100%;
    border-radius: 4px;
    margin-bottom: 5px;
}

.product-type-item span {
    font-size: 10px;
    display: block;
}

.showcase-display {
    background: #1a1d29;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.showcase-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
}

.showcase-details {
    flex: 1;
}

.feature-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.feature-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-icon-item i {
    font-size: 24px;
    margin-bottom: 10px;
    background: #2a2d3e;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
}

.feature-icon-item h6 {
    font-size: 14px;
    margin-bottom: 5px;
}

.feature-icon-item p {
    font-size: 10px;
    color: #a0a0a0;
    margin: 0;
}

.other-products-explore {
    margin-top: 40px;
    font-size: 14px;
}

.other-products-explore a {
    color: #a0a0a0;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a {
    font-size: 20px;
    margin-right: 15px;
    color: #a0a0a0;
}

.social-links a:hover {
    color: #fff;
}

.product-price {
    color: #ef4444;
    font-weight: bold;
}

.newsletter-v2 {
    background-color: #3b82f6;
    background-image: radial-gradient(#60a5fa 10%, transparent 10%);
    background-size: 20px 20px;
    padding: 60px 0;
    text-align: center;
    color: white;
}

.newsletter-v2 h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.newsletter-v2 p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.newsletter-v2 .input-group {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-v2 input {
    height: 50px;
    border-radius: 6px 0 0 6px !important;
    border: none;
    padding: 0 20px;
}

.newsletter-v2 .btn {
    background-color: #111827;
    color: white;
    border: none;
    padding: 0 40px;
    font-weight: bold;
    border-radius: 0 6px 6px 0 !important;
}

.footer-v2 {
    background-color: #000000;
    color: white;
    padding: 60px 0 30px;
}

.footer-logo-section img {
    max-width: 150px;
    margin-bottom: 20px;
}

.footer-v2 h5,
.footer-v2 .footer-heading {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: none;
    font-size: 1.5rem;
    letter-spacing: 0;
    color: #fff;
}

.footer-v2 ul {
    list-style: none;
    padding: 0;
}

.footer-v2 ul li {
    margin-bottom: 0.75rem;
}

.footer-v2 ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-v2 ul li a:hover {
    color: white;
}

/* Social Media List with Labels */
.social-media-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-media-list li {
    margin-bottom: 0.6rem;
}

.social-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.social-link-item i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.social-link-item:hover {
    color: white;
}

/* Newsletter Box */
.newsletter-box {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    padding: 20px;
    border-radius: 8px;
}

.newsletter-label {
    color: #fff;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: block;
        position: relative;
    z-index: 40;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    margin-bottom: 10px;
    max-width: 100%;
}
button.btn.btn-primary.newsletter-btn {
    background: black !important;
}
.newsletter-input-group .newsletter-input {
    flex: 1;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 6px 0 0 6px !important;
    padding: 0 20px;
    font-size: 0.9rem;
}

.newsletter-input-group .newsletter-input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-input-group .newsletter-btn {
    background: #111827;
    color: #fff;
    border: none;
    border-radius: 0 6px 6px 0 !important;
    padding: 0 40px;
    font-size: 0.9rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.newsletter-input-group .newsletter-btn:hover {
    background: #1f2937;
}

.newsletter-disclaimer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    margin: 0;
    line-height: 1.4;
}

.newsletter-disclaimer a {
    color: #fff;
    text-decoration: underline;
}

/* Footer Bottom Section */
.footer-bottom-section {
    border-top: 1px solid #1f2937;
    margin-top: 40px;
    padding-top: 30px;
    background: #0a0c12;
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.footer-logo {
    height: 55px;
    width: auto;
}

.footer-brand-text h6 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.footer-brand-text span {
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-tagline {
    font-size: 0.8rem;
    color: #6b7280;
    margin: 0;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Policy Links */
.footer-policy-links {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-policy-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-policy-links a:hover {
    color: #fff;
}

/* Payment Section */
.footer-payments {
    background: #000000;
    padding: 15px 20px;
    border-radius: 8px;
}

.we-accept-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.payment-icons-row {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.payment-icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.payment-icon {
    background: #fff;
    padding: 6px 8px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.payment-icon i {
    font-size: 1.4rem;
}

.payment-icon i.fa-cc-mastercard {
    color: #EB001B;
}

.payment-icon i.fa-cc-visa {
    color: #1A1F71;
}

.payment-icon i.fa-cc-amex {
    color: #006FCF;
}

.payment-icon i.fa-cc-discover {
    color: #FF6000;
}

.payment-icon i.fa-paypal {
    color: #003087;
}

.payment-icon i.fa-apple-pay {
    color: #000;
}

.accreditation-badges {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-left: 12px;
}

.bbb-badge,
.rating-badge {
    height: 40px;
    width: auto;
    border-radius: 4px;
}

.payment-methods img {
    height: 30px;
    margin-right: 10px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid #1f2937;
    margin-top: 60px;
    padding-top: 20px;
    color: #6b7280;
    font-size: 0.8rem;
}

.footer-bottom a {
    color: #6b7280;
    text-decoration: none;
    margin-left: 15px;
}

.social-icons-v2 a {
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.social-icons-v2 a:hover {
    opacity: 1;
}

/* Responsive Footer */
@media (max-width: 991px) {
    .footer-bottom-section {
        text-align: center;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .footer-policy-links {
        margin-top: 20px;
    }
    
    .footer-payments {
        margin-top: 20px;
    }
    
    .payment-icons-row {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-v2 h5,
    .footer-v2 .footer-heading {
        font-size: 1.25rem;
    }
    
    .newsletter-input-group {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 4px;
        margin-bottom: 8px;
    }
    
    .newsletter-btn {
        border-radius: 4px;
        width: 100%;
    }
}

/* Account Sidebar Styles */
.account-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #1a1d29;
    z-index: 1060;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
    color: white;
}

.account-sidebar.active {
    right: 0;
}

.account-sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.account-sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

.account-sidebar-body {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

.welcome-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.welcome-text {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
}

.login-link {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.signup-block h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.signup-card {
    background-color: #242736;
    border: 1px solid #3a3d4e;
    border-radius: 12px;
    padding: 24px;
    margin-top: 15px;
    margin-bottom: 30px;
}

.signup-card p {
    font-size: 15px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 15px;
}

.create-account-inline {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.account-menu-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.account-menu-item {
    margin-bottom: 25px;
}

.account-menu-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.2s;
}

.account-menu-link i {
    font-size: 20px;
    color: #5d5fef;
}

.account-sidebar-footer {
    padding: 20px 30px 40px;
}

.btn-create-account {
    background-color: #5d5fef;
    color: white;
    border: none;
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
}

.custom-sidebar {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    height: 100%;
    background-color: #ffffff;
    z-index: 1050;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

.custom-sidebar.active {
    left: 0;
}

.sidebar-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1a1d29;
    color: white;
}

.sidebar-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

.sidebar-content {
    flex: 1;
    overflow-y: auto;
    padding: 0;
}

.sidebar-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-menu-item {
    border-bottom: 1px solid #f0f0f0;
}

.sidebar-menu-link {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

.sidebar-menu-link:hover {
    background-color: #f8f9fa;
    color: #5d5fef;
}

.sidebar-menu-link i {
    width: 25px;
    font-size: 18px;
    margin-right: 15px;
    color: #666;
}

.sidebar-footer {
    padding: 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.sidebar-auth-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.sidebar-contact-box {
    font-size: 13px;
    color: #666;
}

.sidebar-contact-box p {
    margin-bottom: 5px;
}

.sidebar-social-v2 {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.sidebar-social-v2 a {
    color: #444;
    font-size: 18px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
    backdrop-filter: blur(2px);
}

.editors-picks-section {
    background-color: #f3f4f6;
    padding: 80px 0;
    text-align: center;
    color: #000;
}

.editors-picks-section h2 {
    color: #4f46e5;
    font-weight: bold;
    margin-bottom: 10px;
}

.editors-picks-section p {
    color: #4b5563;
    margin-bottom: 40px;
}

.browse-links {
    margin-top: 30px;
}

.browse-links a {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    margin: 0 10px;
}

/* Header Menu Dropdown */
.header-menu-dropdown {
    position: relative;
    margin-left: 15px;
}

.menu-toggle-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    padding: 8px 16px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.menu-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.menu-toggle-btn i {
    font-size: 16px;
}

.menu-dropdown-content {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.header-menu-dropdown:hover .menu-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu-dropdown-content a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f0f0f0;
}

.menu-dropdown-content a:last-child {
    border-bottom: none;
}

.menu-dropdown-content a:hover {
    background: #f8f9fa;
    color: #5d5fef;
    padding-left: 25px;
}

.menu-dropdown-content a i {
    width: 18px;
    text-align: center;
    color: #5d5fef;
    font-size: 15px;
}

/* ================================================
   ABOUT PAGE - Introduction Section Styles
   ================================================ */

.about-intro-section {
    padding: 80px 0;
    background-color: #0f111a;
}

/* Image Grid - Left Side */
.about-intro-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

.about-intro-grid-item {
    position: relative;
    border: 3px solid #ffffff;
    background: #000000;
}

.about-intro-grid-item--large {
    /* For the larger items on the left */
}

.about-intro-image-wrapper {
    overflow: hidden;
}

.about-intro-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* First row heights */
.about-intro-grid-item:nth-child(1) .about-intro-image-wrapper {
    height: 280px;
}

.about-intro-grid-item:nth-child(2) .about-intro-image-wrapper {
    height: 280px;
}

/* Second row heights */
.about-intro-grid-item:nth-child(3) .about-intro-image-wrapper {
    height: 250px;
}

.about-intro-grid-item:nth-child(4) .about-intro-image-wrapper {
    height: 250px;
}

.about-intro-image-label {
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-top: 12px;
    font-family: 'Georgia', serif;
    font-style: italic;
}

/* Content - Right Side */
.about-intro-content {
    padding-left: 40px;
}

.about-intro-title {
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Georgia', serif;
}

.about-intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 40px;
}

/* Features List */
.about-intro-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-intro-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-intro-feature-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1c2e;
}

.about-intro-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-feature-icon--shield {
    background: linear-gradient(135deg, #7c3aed 0%, #4f46e5 100%);
    border: none;
}

.about-intro-feature-icon--shield svg {
    width: 40px;
    height: 40px;
    fill: #ffffff;
}

.about-intro-feature-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.about-intro-feature-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

/* Bottom Section - Experience Badge & Video */
.about-intro-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 30px;
}

.about-intro-experience-badge {
    display: flex;
    align-items: baseline;
    gap: 8px;
    background: #7c3aed;
    padding: 15px 25px;
    border-radius: 8px;
    border-left: 4px solid #7c3aed;
}

.about-intro-experience-text {
    font-size: 20px;
    color: #ffffff;
}

.about-intro-experience-number {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.about-intro-experience-years {
    font-size: 20px;
    color: #ffffff;
}

.about-intro-video-link {
    position: relative;
}

.about-intro-video-link a {
    display: block;
}

.about-intro-video-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-intro-video-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(239, 68, 68, 0.4);
}

.about-intro-video-icon .icon-play-buttton {
    font-size: 24px;
    color: #ffffff;
    margin-left: 4px;
}

.about-intro-video-icon .icon-play-buttton::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
}

.about-intro-video-icon .ripple {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(239, 68, 68, 0.5);
    animation: about-intro-ripple 1.5s infinite;
}

@keyframes about-intro-ripple {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/* Responsive Styles for About Intro Section */
@media (max-width: 1199px) {
    .about-intro-content {
        padding-left: 20px;
    }
    
    .about-intro-title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .about-intro-section {
        padding: 60px 0;
    }
    
    .about-intro-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .about-intro-grid {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-intro-title {
        font-size: 36px;
    }
    
    .about-intro-bottom {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-intro-grid {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .about-intro-grid-item:nth-child(1) .about-intro-image-wrapper,
    .about-intro-grid-item:nth-child(2) .about-intro-image-wrapper,
    .about-intro-grid-item:nth-child(3) .about-intro-image-wrapper,
    .about-intro-grid-item:nth-child(4) .about-intro-image-wrapper {
        height: 180px;
    }
    
    .about-intro-image-label {
        font-size: 14px;
    }
    
    .about-intro-title {
        font-size: 28px;
    }
    
    .about-intro-text {
        font-size: 16px;
    }
    
    .about-intro-feature-icon {
        width: 55px;
        height: 55px;
        min-width: 55px;
    }
    
    .about-intro-feature-content h3 {
        font-size: 18px;
    }
    
    .about-intro-feature-content p {
        font-size: 14px;
    }
    
    .about-intro-experience-badge {
        padding: 12px 18px;
    }
    
    .about-intro-experience-number {
        font-size: 28px;
    }
    
    .about-intro-video-icon {
        width: 65px;
        height: 65px;
    }
}

@media (max-width: 575px) {
    .about-intro-section {
        padding: 40px 0;
    }
    
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-intro-grid-item:nth-child(1) .about-intro-image-wrapper,
    .about-intro-grid-item:nth-child(2) .about-intro-image-wrapper,
    .about-intro-grid-item:nth-child(3) .about-intro-image-wrapper,
    .about-intro-grid-item:nth-child(4) .about-intro-image-wrapper {
        height: 200px;
    }
    
    .about-intro-feature-item {
        gap: 15px;
    }
}

/* ================================================
   ABOUT PAGE - Discover Collection Section Styles
   ================================================ */

.about-discover-section {
    background-color: #ffffff;
    padding: 0;
    padding-top: 70px;
    padding-bottom: 70px;
    overflow: hidden;
}

/* Hero Left Side */
.about-discover-hero {
    position: relative;
    min-height: 600px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.about-discover-hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.about-discover-hero-image img {
    max-width: 500px;
    /* width: 127%; */
    position: relative;
    height: auto;
    display: block;
    bottom: 119px;
}
h2.about-intro-title {
    font-family: 'Koulen';
}

p.about-intro-image-label {
    background: black;
    font-family: sans-serif;
    text-decoration: none;
    font-style: inherit;
}

.about-discover-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    margin-top: 379px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-discover-hero-title {
    font-size: 52px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.about-discover-hero-text {
    font-size: 16px;
    color: #333333;
    margin-bottom: 0;
    max-width: 350px;
}

.about-discover-hero-bottom {
    display: flex;
    align-items: center;
    gap: 20px;
}

.about-discover-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.about-discover-hero-btn:hover {
    background-color: #333333;
    transform: translateX(5px);
}

.about-discover-hero-btn svg {
    width: 24px;
    height: 24px;
}

/* Product Grid Right Side */
.about-discover-grid {
    background-color: #ffffff;
}

.about-discover-card {
    position: relative;
    background-color: #ffffff;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}


.about-discover-card-image {
    margin-bottom: 30px;
    text-align: center;
}

.about-discover-card-image img {
    max-width: 200px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.about-discover-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000000;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-transform: capitalize;
}

.about-discover-card-btn:hover {
    background-color: #333333;
    color: #ffffff;
    gap: 15px;
}

.about-discover-card-btn svg {
    width: 20px;
    height: 20px;
}

/* Responsive Styles for Discover Section */
@media (max-width: 1199px) {
    .about-discover-hero-title {
        font-size: 44px;
    }
    
    .about-discover-hero-image img {
        max-width: 380px;
    }
}

@media (max-width: 991px) {
    .about-discover-hero {
        min-height: 500px;
        padding: 40px 30px;
    }
    
    .about-discover-hero-content {
        margin-top: 250px;
    }
    
    .about-discover-hero-title {
        font-size: 38px;
    }
    
    .about-discover-hero-image img {
        max-width: 320px;
    }
    
    .about-discover-card {
        min-height: 280px;
        padding: 30px 20px;
    }
    
    .about-discover-card-image img {
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    .about-discover-hero {
        min-height: 450px;
        padding: 30px 20px;
    }
    
    .about-discover-hero-content {
        margin-top: 200px;
        text-align: center;
    }
    
    .about-discover-hero-title {
        font-size: 32px;
    }
    
    .about-discover-hero-text {
        margin: 0 auto 25px;
    }
    
    .about-discover-hero-image img {
        max-width: 280px;
    }
    
    .about-discover-card {
        min-height: 250px;
        padding: 25px 15px;
    }
    
    .about-discover-card-image {
        margin-bottom: 20px;
    }
    
    .about-discover-card-image img {
        max-width: 150px;
    }
    
    .about-discover-card-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}

@media (max-width: 575px) {
    .about-discover-hero {
        min-height: 400px;
        padding: 25px 15px;
    }
    
    .about-discover-hero-content {
        margin-top: 180px;
    }
    
    .about-discover-hero-title {
        font-size: 28px;
    }
    
    .about-discover-hero-text {
        font-size: 14px;
    }
    
    .about-discover-hero-image img {
        max-width: 240px;
    }
    
    .about-discover-hero-btn {
        width: 50px;
        height: 50px;
    }
    
    .about-discover-hero-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .about-discover-card {
        min-height: 220px;
    }
}
  