@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Roboto:wght@300;400;500;700&display=swap");

:root {
    --primary-gold: #d7af4c;
    --dark-bg: #111111;
    --text-light: #f5f5f5;
    --topbar-bg: #110e0c;
    --section-bg-dark: #161210;
    --section-bg-light: #f4f0ed;

    /* Swiper Theme Override */
    --swiper-theme-color: var(--primary-gold);
    --swiper-pagination-bullet-inactive-color: #8c735c;
    --swiper-pagination-bullet-inactive-opacity: 0.5;
}

html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    overflow-x: hidden;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    margin: 0;
    padding: 0;
    font-family: "Roboto", sans-serif;
    color: var(--text-light);
    background-color: var(--dark-bg);
    scrollbar-width: none;
    -ms-overflow-style: none;
    max-width: 100%;
    width: 100%;
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    display: none;
}

img,
video,
iframe {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
    font-family: "Playfair Display", serif;
}

/* Topbar */
.top-bar {
    background-color: var(--topbar-bg);
    color: #a89f91;
    font-size: 0.75rem;
    padding: 10px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Navbar */
.navbar-custom {
    background: transparent;
    padding: 15px 0;
    position: absolute;
    width: 100%;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.navbar-custom.navbar-sticky {
    position: fixed;
    top: 0;
    background-color: var(--topbar-bg);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    padding: 10px 0;
    animation: slideDown 0.3s ease-in-out;
    z-index: 1030;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.navbar-brand .logo-icon {
    width: auto;
    height: 90px;
    max-width: min(300px, 100%);
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
}

.navbar-brand .brand-name {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
}

.navbar-brand .brand-sub {
    font-size: 0.65rem;
    font-family: "Roboto", sans-serif;
    color: #fff;
    margin-top: 4px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    margin: 0 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold) !important;
}

.nav-icons {
    display: flex;
    gap: 18px;
    align-items: center;
}

.nav-icon-link {
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.nav-icon-link:hover {
    color: var(--primary-gold);
}

button.nav-icon-link {
    background: none;
    border: none;
    padding: 0;
    line-height: 1;
    cursor: pointer;
}

body.site-search-open {
    overflow: hidden;
}

.site-search {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 12vh 16px 24px;
}

.site-search[hidden] {
    display: none;
}

.site-search-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, 0.72);
}

.site-search-panel {
    position: relative;
    width: min(560px, 100%);
    background: #161210;
    border: 1px solid rgba(215, 175, 76, 0.28);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.site-search-form {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-search-form-icon {
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.site-search-input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.site-search-input::placeholder {
    color: #8c8278;
}

.site-search-input::-webkit-search-cancel-button {
    filter: invert(1);
}

.site-search-close {
    background: none;
    border: 0;
    color: #cfc6bc;
    font-size: 1rem;
    padding: 4px;
    line-height: 1;
    cursor: pointer;
}

.site-search-close:hover {
    color: var(--primary-gold);
}

.site-search-hint,
.site-search-status {
    margin: 0;
    padding: 14px 18px 16px;
    color: #a89f91;
    font-size: 0.9rem;
}

.site-search-results {
    display: flex;
    flex-direction: column;
}

.site-search-list {
    max-height: min(52vh, 420px);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.site-search-list::-webkit-scrollbar {
    display: none;
}

.site-search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-search-item:hover,
.site-search-item.is-active {
    background: rgba(215, 175, 76, 0.1);
    color: #fff;
}

.site-search-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 8px;
    background: #2a241f;
    flex-shrink: 0;
}

.site-search-item-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 2px;
}

.site-search-item-name {
    font-size: 0.95rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-search-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
}

.site-search-item-price {
    color: var(--primary-gold);
    font-size: 0.85rem;
}

.site-search-item-ps {
    color: #a89f91;
    font-size: 0.8rem;
}

.site-search-view-all {
    display: block;
    padding: 14px 16px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-top: 1px solid rgba(215, 175, 76, 0.18);
}

.site-search-view-all:hover {
    background: rgba(215, 175, 76, 0.08);
    color: var(--primary-gold);
}

.nav-phone {
    border: 1px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-left: 15px;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background-color: var(--primary-gold);
    color: #000;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 100px;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(17, 17, 17, 0.9) 0%,
        rgba(17, 17, 17, 0.7) 40%,
        rgba(17, 17, 17, 0.1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: min(650px, 100%);
}

.hero-subtitle {
    font-size: 2.2rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
}

.hero-title {
    font-size: 6.5rem;
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 1px;
    overflow-wrap: anywhere;
}

.hero-slogan {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    letter-spacing: 0.5px;
}

.features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: #ddd;
}

.feature-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
    font-size: 1.1rem;
}

.feature-item strong {
    color: #fff;
    font-weight: 500;
}
.feature-item small {
    color: #999;
}

.rating-box {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 20px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    margin-bottom: 45px;
}

.rating-avatars {
    display: flex;
}

.rating-avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #222;
    margin-left: -12px;
    object-fit: cover;
}
.rating-avatars img:first-child {
    margin-left: 0;
}

.rating-stars {
    color: #f39c12;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 0.85rem;
    color: #bbb;
    margin-top: 2px;
}
.rating-text strong {
    color: #fff;
}

.btn-primary-custom {
    background-color: var(--primary-gold);
    color: #111;
    border: 1px solid var(--primary-gold);
    padding: 12px 35px;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #c2993d;
    color: #111;
    border-color: #c2993d;
}

.btn-outline-custom {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 35px;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}

.action-buttons {
    display: flex;
    gap: 20px;
}

/* Floating social buttons */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 100;
    background: #fff;
    padding: 15px 12px;
    border-radius: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.social-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    font-size: 0.7rem;
    transition: all 0.3s ease;
    font-weight: 500;
}

.social-item:hover {
    color: var(--primary-gold);
}

.social-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    font-size: 1.2rem;
    color: var(--primary-gold);
    transition: all 0.3s ease;
}

.social-item:hover .social-icon-wrapper {
    border-color: var(--primary-gold);
    background: rgba(204, 169, 114, 0.1);
}

/* Benefits Section */
.benefits-section {
    background-color: #f4f0ed;
    padding: 30px 0;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.benefit-icon {
    font-size: 2rem;
    color: var(--primary-gold);
}
.benefit-text {
    display: flex;
    flex-direction: column;
}
.benefit-text strong {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.benefit-text span {
    font-size: 0.85rem;
    color: #666;
}

@media (max-width: 768px) {
    .benefit-item {
        justify-content: flex-start;
    }
}

/* Categories Section */
.categories-section {
    background-color: #fff;
}
.category-card {
    display: flex;
    flex-direction: column;
    background-color: #f4f0ed;
    border-radius: 12px;
    padding: 15px;
    text-decoration: none;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
.category-img-wrapper {
    margin-bottom: 15px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-img-wrapper img {
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}
.category-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
    margin-top: auto;
}

/* Products Section */
.product-card {
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}
.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.badge-best-seller {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    background-color: #e67e22;
    color: #fff;
    padding: 5px 10px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.2;
    border-radius: 4px;
}
.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    background-color: #f9f9f9;
}
.badge-best-seller ~ .product-image-category-badge {
    max-width: calc(100% - 120px);
}
.product-image-category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    z-index: 2;
    max-width: calc(100% - 20px);
    padding: 5px 10px;
    background: rgba(22, 18, 16, 0.88);
    border: 1px solid rgba(215, 175, 76, 0.45);
    border-radius: 4px;
    color: var(--primary-gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.3;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}
.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.product-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}
.product-rating {
    font-size: 0.7rem;
    margin-bottom: 8px;
}
.product-rating .bi-star-fill {
    color: #f39c12;
}
.product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 4px;
}
.product-ps-price {
    font-size: 0.85rem;
    font-weight: 700;
    color: #3e2d1a;
    margin-bottom: 12px;
}
.product-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}
.product-price-row .product-price {
    margin-bottom: 0;
    min-width: 0;
}
.product-price-row .product-ps-price {
    margin-bottom: 0;
    margin-left: auto;
    text-align: right;
    font-size: 0.75rem;
}
.btn-buy {
    background-color: #5c4326;
    color: #fff;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 8px 0;
    border: none;
    transition: background-color 0.3s ease;
}
.btn-buy:hover {
    background-color: #3e2d1a;
    color: #fff;
}

.bestsellers-actions {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.bestsellers-actions .btn-buy {
    min-width: 10rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Values Section */
.values-section {
    background-color: #161210;
    border-top: 1px solid #2a221c;
}
.value-icon {
    font-size: 2.2rem;
    color: var(--primary-gold);
    line-height: 1;
}
.value-text {
    display: flex;
    flex-direction: column;
}
.value-text strong {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 500;
    margin-bottom: 2px;
}
.value-text span {
    font-size: 0.8rem;
    color: #bbb;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .navbar-custom {
        background: var(--section-bg-dark);
        padding: 10px 0;
    }
    .navbar-brand {
        max-width: calc(100% - 130px);
    }
    .navbar-brand .logo-icon {
        height: 56px;
        max-width: 100%;
    }
    .navbar-collapse {
        background: var(--section-bg-dark);
        padding: 30px 20px;
        margin-top: 10px;
        text-align: left;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }
    .navbar-nav {
        margin-bottom: 20px;
    }
    .navbar-nav .nav-link {
        padding: 12px 0;
        margin: 0;
        font-size: 1.05rem;
        font-weight: 600;
        letter-spacing: 1px;
    }
    .nav-icons {
        margin-top: 20px;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
        display: flex;
        flex-wrap: wrap;
    }
    .nav-icon-link {
        font-size: 1.3rem;
    }
    .nav-phone {
        margin: 0 0 0 15px;
        padding: 10px 22px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 80px;
    }
    .hero-subtitle {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }
    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }
    .hero-slogan {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .features-list {
        gap: 10px;
        flex-direction: row;
        flex-wrap: wrap;
        margin-bottom: 25px;
    }
    .feature-item {
        font-size: 0.75rem;
        gap: 6px;
    }
    .feature-icon-circle {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    .rating-box {
        margin-bottom: 30px;
    }
    .action-buttons {
        flex-direction: row;
        gap: 10px;
    }
    .btn-primary-custom,
    .btn-outline-custom {
        width: auto;
        flex: 1;
        padding: 12px 5px;
        font-size: 0.75rem;
        text-align: center;
    }

    .floating-social {
        padding: 10px 8px;
        right: 10px;
        gap: 10px;
        border-radius: 20px;
    }
    .social-icon-wrapper {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
    .social-item {
        font-size: 0.6rem;
    }
    .values-section {
        padding: 25px 15px;
    }
    .values-section .value-item {
        padding: 10px 0;
        margin-bottom: 5px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .values-section .col-12:last-child .value-item {
        border-bottom: none;
        margin-bottom: 0;
    }
    .values-section .value-icon {
        font-size: 2.2rem;
        min-width: 45px;
    }
    .values-section .value-text {
        margin-top: 0;
    }
    .values-section .value-text strong {
        font-size: 1.05rem;
        line-height: 1.3;
        margin-bottom: 4px;
    }
    .values-section .value-text span {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* Knowledge Section */
.knowledge-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    background-color: transparent;
}
.knowledge-card:hover {
    border-color: rgba(215, 175, 76, 0.5);
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.02);
}
.knowledge-img-wrapper img {
    transition: all 0.5s ease;
}
.knowledge-card:hover .knowledge-img-wrapper img {
    transform: scale(1.05);
}

/* Footer Section */
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}
.footer-links a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}
.social-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}
.social-circle:hover {
    border-color: var(--primary-gold);
    color: var(--primary-gold);
    background-color: rgba(215, 175, 76, 0.1);
}
.footer-contact li {
    color: #ccc;
}
.footer-contact i {
    color: var(--primary-gold);
}

/* Auth Section */
.auth-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.auth-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85); /* Dark overlay */
    z-index: 1;
}

.auth-card {
    background: rgba(22, 18, 16, 0.95);
    border: 1px solid rgba(215, 175, 76, 0.2);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.auth-nav {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-nav .nav-link {
    color: #888 !important;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid transparent;
    padding: 10px 20px;
    background: transparent;
    transition: all 0.3s ease;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-nav .nav-link.active,
.auth-nav .nav-link:hover {
    color: var(--primary-gold) !important;
    border-bottom: 2px solid var(--primary-gold);
}

.form-control-custom {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 15px;
    border-radius: 6px;
}

.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-control-custom:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary-gold);
    color: #fff;
    box-shadow: none;
}

.btn-toggle-password {
    color: rgba(255, 255, 255, 0.6) !important;
}
.btn-toggle-password:hover {
    color: var(--primary-gold) !important;
}

.form-label-custom {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.auth-btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 15px;
}

.social-login-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    text-decoration: none;
    font-size: 0.95rem;
}

.social-login-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 768px) {
    .auth-section {
        padding-top: 120px;
    }
    .auth-card {
        padding: 25px 20px;
    }
    .auth-nav .nav-link {
        font-size: 0.95rem;
        padding: 8px 15px;
    }
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    min-height: 80vh;
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85); /* Dark overlay */
    z-index: 1;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: rgba(22, 18, 16, 0.95);
    border: 1px solid rgba(215, 175, 76, 0.2);
    padding: 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.contact-info-card h4 {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 700;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info-icon {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-right: 15px;
}

.contact-info-text h6 {
    color: #fff;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.contact-form-card {
    background: rgba(22, 18, 16, 0.95);
    border: 1px solid rgba(215, 175, 76, 0.2);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.contact-form-card h3 {
    color: var(--primary-gold);
    margin-bottom: 25px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .contact-section {
        padding-top: 60px;
    }
    .contact-form-card,
    .contact-info-card {
        padding: 25px 20px;
    }
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    background-image: url("../images/hero-bg.png");
    background-size: cover;
    background-position: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.85); /* Dark overlay */
    z-index: 1;
}
.page-header .container {
    position: relative;
    z-index: 2;
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: #888;
}

/* Pagination Custom */
.pagination-custom .page-link {
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: #111;
    font-weight: 500;
    margin: 0 4px;
    border-radius: 4px;
    transition: all 0.3s;
}
.pagination-custom .page-link:hover {
    background-color: rgba(215, 175, 76, 0.1);
    border-color: var(--primary-gold);
    color: var(--primary-gold);
}
.pagination-custom .page-item.active .page-link {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: #111;
    font-weight: bold;
}
.category-list a {
    transition: color 0.3s;
}
.category-list a:hover {
    color: var(--primary-gold) !important;
}

.form-select option {
    color: #222;
    background-color: #fff;
}

/* Products listing */
.page-header-title {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.products-list-section {
    background-color: #faf9f8;
    padding: 80px 0;
}

.sidebar-filter .form-check-input {
    background-color: transparent;
    border-color: rgba(215, 175, 76, 0.45);
}

.sidebar-filter .form-check-input:checked {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.sidebar-filter .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(215, 175, 76, 0.2);
    border-color: var(--primary-gold);
}

.category-list a.active {
    color: var(--primary-gold) !important;
}

.products-empty {
    background: #fff;
    border: 1px dashed rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.products-empty-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.products-list-section .product-card .product-ps-price,
.products-list-section .product-card .product-title,
.products-list-section .product-card .product-price {
    color: #222;
}

.products-list-section .product-card .product-ps-price {
    color: #3e2d1a;
}

.products-list-section .product-card .product-title {
    color: #222;
}

.products-list-section .product-card .product-price {
    color: #111;
}

.products-list-section .pagination {
    --bs-pagination-color: #5c4326;
    --bs-pagination-bg: #fff;
    --bs-pagination-border-color: #e5e0d8;
    --bs-pagination-hover-color: #161210;
    --bs-pagination-hover-bg: rgba(215, 175, 76, 0.15);
    --bs-pagination-hover-border-color: var(--primary-gold);
    --bs-pagination-focus-color: #161210;
    --bs-pagination-focus-bg: rgba(215, 175, 76, 0.15);
    --bs-pagination-focus-box-shadow: none;
    --bs-pagination-active-color: #161210;
    --bs-pagination-active-bg: var(--primary-gold);
    --bs-pagination-active-border-color: var(--primary-gold);
}

.about-section .about-video-featured {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 0;
    border: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #222;
    cursor: pointer;
}
.about-section .about-video-featured .about-video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section .about-video-featured .play-button {
    min-width: 4.5rem;
    height: 4.5rem;
    font-size: 1.75rem;
}
.about-section .about-video-card {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}
.about-section .about-video-card-thumb {
    position: relative;
    display: block;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 12px;
    background: #222;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.about-section .about-video-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.75rem;
    height: 2.75rem;
    padding: 0 0.55rem;
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    background: rgba(22, 18, 16, 0.45);
    color: #fff;
    font-family: "Playfair Display", serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1;
    transform: translate(-50%, -50%);
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}
.about-section .about-video-trigger:hover .play-button {
    background: rgba(215, 175, 76, 0.9);
    border-color: var(--primary-gold);
    color: #161210;
}

.about-section .about-videos-carousel {
    position: relative;
    overflow: visible;
}

.about-section .about-videos-swiper-frame {
    position: relative;
    overflow: visible;
}

.about-section .aboutVideosSwiper {
    overflow: hidden;
}

.about-section .about-videos-nav {
    --swiper-navigation-color: var(--primary-gold);
    --swiper-navigation-size: 1rem;
    --swiper-navigation-sides-offset: 0;
    top: 50%;
    width: 2.5rem;
    height: 2.5rem;
    margin-top: 0;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(22, 18, 16, 0.14);
    z-index: 2;
}

.about-section .about-videos-nav::after {
    font-size: 1rem;
    font-weight: 700;
}

.about-section .swiper-button-prev.about-videos-nav {
    left: 0;
    transform: translate(-50%, -50%);
}

.about-section .swiper-button-next.about-videos-nav {
    right: 0;
    left: auto;
    transform: translate(50%, -50%);
}

.about-section .about-videos-nav:hover {
    background: var(--primary-gold);
    --swiper-navigation-color: #161210;
}

.about-section .about-content h2 {
    margin-bottom: 0.75rem;
}

.about-section .about-video-copy {
    white-space: pre-line;
    margin-top: 0;
}

.about-video-modal {
    background: #161210;
    color: #fff;
}

.about-video-modal .modal-title {
    color: #fff;
}

.about-video-modal-content {
    margin: 0;
    padding: 1rem 1.25rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    white-space: pre-line;
}
