* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

::selection {
    background: var(--gold);
    color: black;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes loadLogo {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: drop-shadow(0 0 0px var(--gold));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--gold));
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 0px transparent);
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

body {
    background-color: #000000;
    background: radial-gradient(circle, #0a0a0a 0%, #000000 85%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #FFFFFF;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    animation: fadeIn 1s ease-out;
}

/* --- COLORS --- */
:root {
    --gold: #D4AF37;
    --black: #000000;
    --dark-grey: #121212;
    --white: #ffffff;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3 {
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--gold);
}

/* --- BUTTONS --- */
.btn-gold {
    background: var(--gold);
    color: var(--black);
    padding: 15px 30px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1rem;
    letter-spacing: 1px;
}

.btn-gold:hover {
    background: #fff;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 10px 20px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
}

/* --- NAVBAR --- */
/* Navbar pushed to 1000 */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

/* ... existing code ... */

/* Cart Overlay > Navbar */
/* Cart Overlay */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 400px;
    height: 100%;
    background: #ffffff;
    z-index: 1100;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.1);
    color: #111;
}

.cart-drawer.active {
    right: 0;
}

/* --- TOAST NOTIFICATIONS --- */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
}

.toast {
    background: #000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: white;
    padding: 15px 25px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    pointer-events: auto;
    transform: translateX(120%);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.toast.active {
    transform: translateX(0);
}

.toast i {
    color: var(--gold);
    font-size: 1.1rem;
}

.toast-error {
    border-color: #d9534f;
}

.toast-error i {
    color: #d9534f;
}

/* Modal > Cart > Navbar */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    /* Darker dim */
    backdrop-filter: blur(8px);
    /* Premium blur effect */
    z-index: 1200;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

/* Logout Confirmation Modal Specifics */
.confirmation-modal {
    max-width: 400px;
    padding: 40px 30px;
    border: 1px solid var(--gold);
    /* Gold border for emphasis */
}

.confirmation-modal h3 {
    font-size: 1.5rem;
    color: white;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.confirmation-modal p {
    color: #ccc;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

.confirmation-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.confirmation-actions button {
    min-width: 100px;
}

/* --- AUTH FLOW STYLES --- */
.auth-view {
    animation: fadeIn 0.3s ease;
}

/* Validation Styles */
.error-msg {
    color: #ff4d4d;
    font-size: 11px;
    margin-top: -12px;
    margin-bottom: 12px;
    display: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    animation: fadeIn 0.3s ease;
}

input.invalid-input {
    border-color: #ff4d4d !important;
}

input.invalid-input:focus {
    box-shadow: 0 0 0 2px rgba(255, 77, 77, 0.2);
}

.btn-gold:disabled,
.btn-outline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    filter: grayscale(1);
}

.btn-gold:disabled:hover,
.btn-outline:disabled:hover {
    background: inherit;
    color: inherit;
    transform: none;
}

.modal-title {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.modal-subtitle {
    color: #888;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.text-right {
    text-align: right;
}

.auth-divider {
    display: flex;
    align-items: center;
    color: #444;
    margin: 20px 0;
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #333;
}

.auth-divider span {
    padding: 0 10px;
}

.btn-social {
    background: transparent;
    border: 1px solid #444;
    color: white;
    padding: 12px;
    border-radius: 4px;
    /* Slight round */
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.btn-social:hover {
    border-color: white;
    background: #222;
}

.auth-link-sm {
    color: #888;
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s;
}

.auth-link-sm:hover {
    color: var(--gold);
}

.auth-footer-link {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #888;
}

.auth-footer-link a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}

.btn-text-back {
    background: none;
    border: none;
    color: #666;
    margin-top: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: auto;
}

.btn-text-back:hover {
    color: white;
}

.success-icon-lg {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
    animation: fadeIn 0.5s ease;
}

.logo-img {
    height: 35px;
    /* Adjust based on navbar height */
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: var(--gold);
}

.menu-icons {
    display: flex;
    align-items: center;
}

.account-icon {
    cursor: pointer;
    margin-right: 20px;
    transition: 0.3s;
}

.account-icon:hover {
    color: var(--gold);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    margin-right: 20px;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--gold);
    color: black;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 50%;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: radial-gradient(circle, #1a1a1a 0%, #000000 70%);
}

.hero-logo {
    width: 150px;
    margin-bottom: 20px;
    animation: loadLogo 1.5s ease-out;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    color: transparent;
    background: linear-gradient(to right, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    background-size: 200%;
    animation: shine 5s linear infinite;
}

.hero p {
    color: #888;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

/* Filter Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    color: #888;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    cursor: pointer;
    font-size: 0.9rem;
    margin-left: 20px;
    text-transform: uppercase;
    transition: 0.3s;
}

.filter-checkbox:hover {
    color: var(--gold);
}

.filter-checkbox input {
    accent-color: var(--gold);
    margin-right: 8px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* --- SHOP SECTION --- */
/* --- SHOP SECTION REFINED --- */
.shop-section {
    padding: 60px 40px;
}

.shop-page-section {
    padding-top: 120px;
}

.shop-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-bottom: 50px;
    border-bottom: 1px solid #1a1a1a;
    position: sticky;
    top: 75px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    z-index: 100;
}

.filter-cats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.cat-btn {
    background: transparent;
    border: none;
    color: #555;
    font-family: 'Oswald', sans-serif;
    font-size: 0.95rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 8px 0;
    position: relative;
}

.cat-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cat-btn.active,
.cat-btn:hover {
    color: var(--gold);
}

.cat-btn.active::after {
    width: 100%;
}

.search-box {
    position: relative;
    width: 280px;
}

.search-box input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    padding: 10px 30px 10px 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    outline: none;
    transition: 0.3s;
}

.search-box input:focus {
    border-bottom-color: var(--gold);
}

.search-box i {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #444;
    pointer-events: none;
}

/* PRODUCT GRID STAGGERING */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 60px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.product-card {
    background: transparent;
    text-align: left;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    opacity: 0;
    transform: translateY(40px);
}

.product-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

.card-link {
    display: block;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    position: relative;
}

.card-image {
    height: 450px;
    background-size: cover;
    background-position: center;
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .card-image {
    transform: scale(1.05);
}

.quick-view-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    color: black;
    border: none;
    padding: 15px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    transform: translateY(100%);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    z-index: 10;
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.card-info h3 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.card-info .price {
    font-size: 0.9rem;
    color: #888;
    font-family: 'Montserrat', sans-serif;
}

.card-info button {
    display: none;
    /* Removed the redundant button as we have the Quick View trigger now */
}

/* QUICK VIEW DRAWER */
.quickview-drawer {
    position: fixed;
    top: 0;
    right: -600px;
    width: 550px;
    height: 100%;
    background: #000;
    border-left: 1px solid #1a1a1a;
    z-index: 1300;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.8);
}

.quickview-drawer.active {
    right: 0;
}

.quickview-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #555;
    font-size: 1.5rem;
    cursor: pointer;
    transition: 0.3s;
}

.quickview-close:hover {
    color: white;
}

.qv-image-container {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 40px;
}

.qv-details {
    padding-right: 20px;
}

.qv-title {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
}

.qv-price {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    font-weight: 700;
}

.qv-desc {
    color: #888;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1rem;
}

.qv-actions {
    display: flex;
    gap: 20px;
}

/* --- REVIEWS & ABOUT --- */
.reviews-section,
.about-section {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.review-card {
    max-width: 600px;
    margin: 0 auto 20px;
    background: #111;
    padding: 20px;
}

.stars {
    color: var(--gold);
    margin-bottom: 10px;
}

.about-logo {
    width: 100px;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(200%);
}


/* --- CART DRAWER (White Theme) --- */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    backdrop-filter: blur(2px);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Consolidated duplicate removed */

.cart-header {
    padding: 20px 30px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
    color: #111;
    font-family: 'Montserrat', sans-serif;
}

.close-btn {
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: 0.3s;
}

.close-btn:hover {
    color: #000;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
}

.cart-item {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f5f5f5;
}

.cart-thumb {
    width: 80px;
    height: 80px;
    background-size: cover !important;
    background-position: center !important;
    background-color: #f9f9f9;
    border-radius: 4px;
}

.cart-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 5px;
}

.cart-header-row h4 {
    font-size: 0.95rem;
    color: #111;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.cart-header-row .remove-btn {
    color: #ccc;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
}

.cart-header-row .remove-btn:hover {
    color: #d9534f;
}

.cart-variant {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
}

.cart-price {
    font-size: 0.95rem;
    color: #111;
    font-weight: 600;
    margin-bottom: 10px;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 20px;
    /* Pill shape */
    padding: 2px 5px;
    width: fit-content;
}

.qty-selector button {
    background: none;
    border: none;
    color: #666;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-selector button:hover {
    color: #000;
}

.qty-selector span {
    margin: 0 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #111;
    min-width: 10px;
    text-align: center;
}

.cart-footer {
    padding: 25px 30px;
    border-top: 1px solid #eee;
    background: #fff;
}

.cart-footer .total {
    display: flex;
    justify-content: space-between;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 20px;
}

.btn-checkout {
    background: #0a0a0a;
    /* Dark button */
    color: white;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
}

.btn-checkout:hover {
    background: #333;
    transform: translateY(-2px);
}

.empty-msg {
    text-align: center;
    color: #666;
    margin-top: 40px;
}



.product-card:hover .card-info button {
    opacity: 1;
    transform: translateY(0);
    border-color: var(--gold);
    color: var(--gold);
}

/* --- REVIEWS & ABOUT --- */
.reviews-section,
.about-section {
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #222;
}

.review-card {
    max-width: 600px;
    margin: 0 auto 20px;
    background: #111;
    padding: 20px;
}

.stars {
    color: var(--gold);
    margin-bottom: 10px;
}

.about-logo {
    width: 100px;
    margin-bottom: 20px;
    filter: grayscale(100%) brightness(200%);
}

/* --- PRODUCT PAGE REFINED --- */
.product-container {
    max-width: 1400px;
    margin: 120px auto 60px;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 4/5;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
}

.product-details-sidebar {
    position: sticky;
    top: 120px;
}

.pd-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: white;
    font-family: 'Oswald', sans-serif;
}

.pd-price {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 700;
}

.pd-desc {
    color: #888;
    line-height: 1.8;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Accordion Styles */
.product-accordions {
    margin-top: 60px;
    border-top: 1px solid #1a1a1a;
}

.accordion-item {
    border-bottom: 1px solid #1a1a1a;
}

.accordion-header {
    width: 100%;
    padding: 20px 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.accordion-header:hover {
    color: var(--gold);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 20px;
}

.accordion-header i {
    transition: 0.4s;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

@media(max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
    }

    .main-image {
        height: 350px;
    }
}

/* --- LOGIN MODAL (THE GATE) --- */


.modal-content {
    background: #111;
    padding: 40px;
    border: 1px solid var(--gold);
    text-align: center;
    width: 90%;
    max-width: 400px;
    position: relative;
}

.modal-logo {
    width: 80px;
    margin-bottom: 20px;
}

/* --- USER PROFILE (PREMIUM UPDATE) --- */
.dashboard-tabs {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.tab-btn {
    background: none;
    border: none;
    color: #666;
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    letter-spacing: 2px;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--gold);
    border-bottom: 2px solid var(--gold);
}

.profile-form {
    text-align: left;
    max-width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row.three-col {
    grid-template-columns: 2fr 1fr 1fr;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px 15px;
    background: transparent;
    border: 1px solid #333;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

.input-group input[readonly] {
    border: 1px dashed #333;
    color: #666;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

/* --- READ-ONLY PROFILE VIEW --- */
#profile-read-only {
    padding: 10px 0;
    animation: fadeIn 0.5s ease;
}

.profile-header-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.icon-btn-edit {
    background: transparent;
    border: none;
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.icon-btn-edit:hover {
    color: white;
}

.read-only-group {
    margin-bottom: 30px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 15px;
}

.read-only-group:last-of-type {
    border-bottom: none;
}

.ro-label {
    display: block;
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ro-value {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
}

.ro-address-block p {
    margin: 2px 0;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
}

/* --- REFINED ORDER HISTORY --- */
.order-item-card {
    background: #111;
    border: 1px solid #222;
    padding: 0;
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
}

.order-header {
    background: #161616;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
}

.order-id {
    color: white;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-right: 15px;
}

.order-date {
    color: #888;
    font-size: 0.85rem;
}

.order-status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.status-processing {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.status-shipped {
    background: rgba(33, 150, 243, 0.1);
    color: #2196f3;
    border: 1px solid #2196f3;
}

.status-delivered {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid #4caf50;
}

.status-cancelled {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid #f44336;
}

.order-body {
    padding: 20px 25px;
}

.order-product-row {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.order-product-row:last-child {
    margin-bottom: 0;
}

.op-image {
    width: 60px;
    height: 60px;
    background-size: cover !important;
    background-position: center !important;
    border: 1px solid #333;
    border-radius: 4px;
    margin-right: 20px;
}

.op-details {
    display: flex;
    flex-direction: column;
}

.op-name {
    color: white;
    font-weight: 500;
    margin-bottom: 4px;
}

.op-meta {
    color: #888;
    font-size: 0.85rem;
}

.order-footer {
    padding: 15px 25px;
    border-top: 1px solid #222;
    background: #161616;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.order-total-block span {
    display: block;
}

.order-total-block span:first-child {
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 2px;
}

.total-price {
    color: var(--gold);
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
}

.order-actions {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.8rem;
}

@media(max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-row.three-col {
        grid-template-columns: 1fr;
    }
}


.close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 2rem;
    cursor: pointer;
}

/* --- RESPONSIVE --- */
@media(max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}

/* --- SHOP PAGE --- */
/* --- ACCOUNT DASHBOARD (2-COLUMN LAYOUT) --- */

/* --- AUTH MODAL STYLES --- */
.modal-logo {
    width: 80px;
    height: auto;
    display: block;
    margin: 0 auto 30px;
}

.modal-subtitle {
    text-align: center;
    color: #999;
    font-size: 14px;
    margin-bottom: 30px;
}

.auth-divider {
    text-align: center;
    margin: 25px 0;
    position: relative;
}

.auth-divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #333;
}

.auth-divider span {
    background: #1a1a1a;
    padding: 0 15px;
    position: relative;
    color: #666;
    font-size: 12px;
}

.auth-footer-link {
    text-align: center;
    margin-top: 20px;
    color: #999;
    font-size: 14px;
}

.auth-footer-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer-link a:hover {
    text-decoration: underline;
}

.auth-link-sm {
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
}

.auth-link-sm:hover {
    text-decoration: underline;
}

.btn-text-back {
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    margin-top: 20px;
    font-size: 14px;
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
}

.btn-text-back:hover {
    color: #d4af37;
}

.success-icon-lg {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #d4af37;
    color: #000;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.auth-view {
    display: none;
}

.auth-view.active {
    display: block;
}

/* Wider Modal when in Account Mode */
.modal-content.large {
    max-width: 1100px;
    padding: 0;
    text-align: left;
    display: flex;
    overflow: hidden;
    height: 80vh;
}

.account-container {
    display: flex;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
}

/* Sidebar */
.account-sidebar {
    width: 280px;
    background: #111;
    /* Slightly lighter than main content for distinction */
    border-right: 1px solid #222;
    display: flex;
    flex-direction: column;
}

.sidebar-user {
    padding: 30px;
    border-bottom: 1px solid #222;
    background: #141414;
    text-align: center;
}

.user-avatar {
    width: 70px;
    height: 70px;
    background: #000;
    border: 1px solid var(--gold);
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.sidebar-user .greeting {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.sidebar-user h4 {
    color: white;
    margin: 0;
    font-size: 1.1rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
}

.sidebar-nav {
    padding: 20px 0;
    flex: 1;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    padding: 15px 30px;
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    /* Highlight marker */
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.3s;
    text-align: left;
}

.nav-item i {
    width: 20px;
    text-align: center;
}

.nav-item:hover {
    background: #1a1a1a;
    color: white;
}

.nav-item.active {
    background: #181818;
    color: var(--gold);
    border-left: 3px solid var(--gold);
    font-weight: 600;
}

.nav-item.logout:hover {
    color: #d9534f;
}

/* Content Area */
.account-content {
    flex: 1;
    padding: 40px;
    overflow-y: auto;
    position: relative;
    background: #0a0a0a;
}

.account-section {
    display: none;
    animation: fadeIn 0.4s ease;
}

.account-section.active {
    display: block;
}

.section-title-sm {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 30px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.section-header-row .section-title-sm {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Dashboard Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.dash-card {
    background: #111;
    border: 1px solid #222;
    padding: 25px;
    border-radius: 8px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dash-card:hover {
    border-color: #333;
    transform: translateY(-2px);
}

.dash-card h3 {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.link-gold {
    color: var(--gold);
    text-decoration: none;
    font-size: 0.9rem;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    margin-top: 15px;
    display: inline-block;
}

.link-gold:hover {
    text-decoration: underline;
}

/* Address Grid */
.address-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.address-card {
    background: #111;
    border: 1px solid #222;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}

.address-card.default {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.addr-type {
    display: inline-block;
    background: #222;
    color: #ccc;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.address-card.default .addr-type {
    background: var(--gold);
    color: black;
}

.addr-details p {
    color: #ddd;
    font-size: 0.95rem;
    margin-bottom: 3px;
    line-height: 1.5;
}

.addr-actions {
    margin-top: 15px;
    display: flex;
    gap: 15px;
    border-top: 1px solid #222;
    padding-top: 10px;
}

.addr-btn {
    background: none;
    border: none;
    color: #666;
    font-size: 0.8rem;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

.addr-btn:hover {
    color: white;
}

.addr-btn.delete:hover {
    color: #d9534f;
}

/* Wishlist Grid */
.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.wishlist-item {
    background: #111;
    border: 1px solid #222;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.wishlist-thumb {
    width: 100%;
    aspect-ratio: 1/1;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-bottom: 12px;
}

.wishlist-item h4 {
    font-size: 0.9rem;
    color: #eee;
    margin-bottom: 5px;
}

.wishlist-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
}

/* Order Status Badges */
.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-processing {
    background: #5bc0de;
    color: white;
}

.status-shipped {
    background: #f0ad4e;
    color: white;
}

.status-delivered {
    background: #5cb85c;
    color: white;
}

.status-cancelled {
    background: #d9534f;
    color: white;
}

/* Read-Only Profile View */
.read-only-group {
    margin-bottom: 25px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
}

.ro-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.ro-value {
    font-size: 1.1rem;
    color: #ddd;
    font-family: 'Montserrat', sans-serif;
}

.profile-header-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.icon-btn-edit {
    background: transparent;
    border: 1px solid #333;
    color: var(--gold);
    padding: 8px 15px;
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.icon-btn-edit:hover {
    background: #1a1a1a;
    border-color: var(--gold);
}

/* Wishlist Toggle Button (Heart) */
.wishlist-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.wishlist-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.wishlist-toggle.active i {
    color: var(--gold);
}

.wishlist-toggle i {
    transition: transform 0.3s;
}

.wishlist-toggle.active i {
    transform: scale(1.2);
}

/* Order History Cards */
.order-card {
    background: #111;
    border: 1px solid #222;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: 0.3s;
}

.order-card:hover {
    border-color: #333;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

.order-id {
    font-family: 'Oswald', sans-serif;
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.order-info {
    margin-bottom: 15px;
}

.order-info p {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.order-actions {
    display: flex;
    gap: 10px;
}

.btn-sm {
    padding: 8px 15px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Mobile Responsive Adjustments */
@media(max-width: 800px) {
    .modal-content.large {
        flex-direction: column;
        height: 95vh;
        overflow-y: scroll;
    }

    .account-sidebar {
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #222;
        flex-direction: row;
        /* Horizontal scroll or hamburger? */
        overflow-x: auto;
    }

    .sidebar-user {
        display: none;
        /* Hide user info on mobile to save space */
    }

    .sidebar-nav {
        display: flex;
        padding: 0;
    }

    .nav-item {
        width: auto;
        padding: 15px;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        flex-direction: column;
        gap: 5px;
        font-size: 0.7rem;
    }

    .nav-item.active {
        border-left: none;
        border-bottom: 3px solid var(--gold);
    }

    .nav-item i {
        font-size: 1.2rem;
    }

    .account-content {
        padding: 20px;
    }
}

/* --- SHOP PAGE --- */
.shop-controls {
    max-width: 1200px;
    margin: 120px auto 40px;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-box input {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    padding: 15px 45px 15px 15px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.search-box input:focus {
    outline: none;
    border-color: var(--gold);
}

.search-box i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gold);
}

.filter-cats {
    display: flex;
    gap: 15px;
}

.cat-btn {
    background: transparent;
    border: 1px solid #333;
    color: #888;
    padding: 12px 30px;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.cat-btn:hover {
    border-color: #555;
    color: white;
}

.cat-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.shop-page-section {
    padding-top: 20px;
}

/* Community Section */
.community-section {
    padding: 100px 20px;
    background: #000;
    text-align: center;
    border-top: 1px solid #333;
}

.community-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.community-content p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    /* Safety for mobile */
}

.cta-btn {
    min-width: 200px;
    /* Ensure equal width */
    text-align: center;
    display: inline-block;
    text-decoration: none;
    /* Ensure no underline */
    line-height: 1.5;
    /* Vertical centering helper if needed */
}

/* --- FOOTER --- */
footer {
    text-align: center;
    padding: 40px 20px;
    color: #888;
    border-top: 1px solid #222;
    margin-top: 40px;
    font-size: 0.9rem;
}


/* --- OUR STORY PAGE --- */
.story-container {
    max-width: 1000px;
    margin: 150px auto 40px;
    padding: 0 20px;
}

.story-intro {
    text-align: center;
    margin-bottom: 80px;
}

.story-intro h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.story-intro p {
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.philosophy-split {
    display: flex;
    gap: 50px;
    margin-bottom: 100px;
    align-items: center;
}

.split-img {
    flex: 1;
    height: 400px;
    background: #222;
    border-radius: 20px;
    border: 1px solid #333;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 20px;
}

.split-text p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-section {
    text-align: center;
    margin-bottom: 100px;
}

.team-section h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.team-section .subtitle {
    color: #888;
    margin-bottom: 50px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.team-member {
    flex: 0 1 250px;
    text-align: center;
}

.round-img {
    width: 150px;
    height: 150px;
    background: #222;
    border-radius: 50%;
    margin: 0 auto 20px;
    border: 1px solid var(--gold);
}

.team-member h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.team-member .role {
    display: block;
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-member p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
}

.cta-section {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 20px;
    background: #111;
    border-radius: 20px;
    border: 1px solid #333;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.cta-section p {
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media(max-width: 768px) {
    .philosophy-split {
        flex-direction: column;
    }

    .split-img {
        width: 100%;
    }
}


/* --- CONTACT PAGE --- */
.contact-container {
    max-width: 1000px;
    margin: 150px auto 60px;
    padding: 0 20px;
    text-align: center;
}

.contact-intro {
    margin-bottom: 80px;
}

.contact-intro h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.contact-intro p {
    color: #888;
    font-size: 1.1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    background: #111;
    padding: 40px 20px;
    border: 1px solid #333;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--gold);
    border: 1px solid #333;
}

.contact-card:hover .contact-icon {
    border-color: var(--gold);
    background: #1a1a1a;
}

.contact-card h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.contact-card p {
    color: #888;
    line-height: 1.6;
}


/* --- LOCATION / CURRENCY --- */
.location-icon {
    font-size: 1.2rem;
    color: var(--white);
    margin-right: 20px;
    cursor: pointer;
    position: relative;
    top: 2px;
}

.location-icon:hover {
    color: var(--gold);
}

.currency-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.currency-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #000;
    border: 1px solid #333;
    cursor: pointer;
    transition: 0.3s;
}

.currency-option:hover {
    border-color: var(--gold);
    background: #111;
}

.currency-option span {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

.currency-option i {
    color: var(--gold);
    opacity: 0;
}

.currency-option.active {
    border-color: var(--gold);
}

.currency-option.active i {

    opacity: 1;
}

/* --- CHECKOUT PAGE (NEW 2-COLUMN) --- */
.checkout-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    min-height: 100vh;
    border-top: 1px solid #333;
    padding-top: 0;
    /* Navbar removed */
}

.checkout-main {
    padding: 40px 8%;
    border-right: 1px solid #333;
    background: #000;
}

.checkout-sidebar {
    padding: 40px 8%;
    background: #111;
}

.checkout-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    color: #888;
}

.checkout-header img {
    height: 30px;
}

.checkout-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
}

.checkout-section {
    margin-bottom: 40px;
}

.checkout-input {
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
}

.checkout-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.form-group {
    display: flex;
    gap: 15px;
}

.form-group .half {
    width: 50%;
}

.form-group .third {
    width: 33.33%;
}

/* Shipping Option */
.shipping-option {
    display: flex;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--gold);
    border-radius: 5px;
    background: rgba(212, 175, 55, 0.1);
    color: white;
}

/* Payment Options */
.payment-option {
    padding: 15px;
    border: 1px solid #333;
    background: #111;
    margin-bottom: 0;
}

.payment-option:first-of-type {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: none;
}

.payment-option:last-of-type {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top: none;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: white;
}

/* --- CHECKOUT SPECIFIC STYLES --- */

/* Header / Progress */
.checkout-header {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkout-header img {
    height: 40px;
}

.checkout-progress {
    display: flex;
    gap: 15px;
    align-items: center;
    color: #666;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.checkout-progress .step.active {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.checkout-progress .divider {
    color: #333;
    font-size: 0.8rem;
}

.step-title {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 20px;
    border-bottom: 1px solid #222;
    padding-bottom: 10px;
}

/* Address Step */
.address-grid-checkout {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.checkout-addr-card {
    background: #111;
    border: 1px solid #333;
    padding: 20px;
    cursor: pointer;
    border-radius: 5px;
    transition: 0.3s;
    position: relative;
}

.checkout-addr-card:hover {
    border-color: #555;
}

.checkout-addr-card.selected {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.checkout-addr-card .check-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    color: var(--gold);
    display: none;
}

.checkout-addr-card.selected .check-icon {
    display: block;
}

.add-address-toggle {
    color: var(--gold);
    cursor: pointer;
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    margin-top: 10px;
}

.add-address-toggle:hover {
    text-decoration: underline;
}

/* Payment Step (Accordion) */
.payment-accordion {
    border: 1px solid #333;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 30px;
}

.pay-option {
    background: #111;
    border-bottom: 1px solid #333;
    transition: 0.3s;
}

.pay-option:last-child {
    border-bottom: none;
}

.pay-header {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.pay-header input[type="radio"] {
    accent-color: var(--gold);
    transform: scale(1.2);
}

.pay-body {
    padding: 0 20px 20px 52px;
    /* Indent to align with text */
    /* Display controlled by JS/Inline styles */
}

.action-buttons-row {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

/* Custom Checkbox */
.custom-checkbox-container {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ccc;
    user-select: none;
}

.custom-checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #111;
    border: 1px solid #333;
    border-radius: 4px;
}

.custom-checkbox-container:hover input~.checkmark {
    border-color: #666;
}

.custom-checkbox-container input:checked~.checkmark {
    background-color: var(--gold);
    border-color: var(--gold);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.custom-checkbox-container input:checked~.checkmark:after {
    display: block;
}

.custom-checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid black;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

#addr-form-error {
    animation: fadeIn 0.3s;
}

.summary-item {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
}

.summary-thumb-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
}

.summary-thumb {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px solid #333;
    background-size: cover;
    background-position: center;
}

.summary-qty {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #666;
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-details {
    flex: 1;
}

.summary-details h4 {
    margin: 0;
    color: white;
    font-size: 0.95rem;
}

.summary-details p {
    color: #888;
    font-size: 0.85rem;
    margin: 3px 0 0;
}

.summary-price {
    color: white;
    font-weight: 500;
}

.discount-box {
    display: flex;
    gap: 10px;
    padding-bottom: 30px;
    border-bottom: 1px solid #333;
    margin-bottom: 30px;
}

.discount-box input {
    flex: 1;
    padding: 12px;
    background: #111;
    border: 1px solid #333;
    color: white;
    border-radius: 5px;
}

.apply-btn {
    padding: 0 20px;
    background: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.total-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: #bbb;
    font-size: 0.95rem;
}

.total-row.final {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 20px;
}

@media(max-width: 900px) {
    .checkout-container {
        grid-template-columns: 1fr;
        padding-top: 60px;
    }

    .checkout-main,
    .checkout-sidebar {
        padding: 30px 20px;
        border-right: none;
    }

    .checkout-sidebar {
        order: -1;
        /* Show summary first on mobile for context */
        border-bottom: 1px solid #333;
    }
}

/* --- SOCIAL MEDIA --- */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.2rem;
}

.social-icon:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: #111;
    transform: translateY(-3px);
}

/* --- ANIMATIONS --- */
@keyframes loadLogo {
    0% {
        opacity: 0;
        transform: scale(0.8);
        filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
    }

    100% {
        opacity: 1;
        transform: scale(1);
        filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
    }
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

/* --- PRODUCT PAGE FIX --- */
.product-container {
    max-width: 1200px;
    margin: 150px auto 40px;
    padding: 0 20px;
    display: flex;
    gap: 40px;
}

@media(max-width: 768px) {
    .product-container {
        flex-direction: column;
        margin-top: 120px;
    }
}

/* --- REVIEWS CAROUSEL --- */
.carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.review-carousel {
    overflow: hidden;
    width: 100%;
}

.review-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.review-slide {
    min-width: 100%;
    /* Show 1 at a time */
    padding: 0 15px;
    box-sizing: border-box;
    display: flex;
    /* Ensure centering */
    justify-content: center;
    /* Center content */
}

/* Ensure review card takes full width of slide but respects padding */
.review-slide .review-card {
    width: 100%;
    margin: 0 auto;
    /* Center card if width is constrained */
    min-height: 180px;
    /* Uniform height */
}

.carousel-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--gold);
    color: black;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .review-slide {
        min-width: 100%;
        /* Show 1 at a time on mobile */
    }
}

/* --- ANIMATIONS --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

/* Pulse Animation for CTA buttons */
@keyframes pulse-gold {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.btn-pulse {
    animation: pulse-gold 2s infinite;
}

/* --- OUR STORY / PHILOSOPHY --- */
.story-container {
    padding-top: 120px;
    /* Space for navbar */
    max-width: 1200px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    padding: 40px 20px 0 20px;
    /* Reduced bottom padding */
}

.story-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.story-intro p {
    max-width: 900px;
    /* Wider for better readability in middle */
    margin: 0 auto;
    color: #888;
    line-height: 1.6;
    font-size: 1.1rem;
}

.philosophy-split {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: center;
    /* Center horizontally */
    gap: 50px;
    padding: 20px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    /* Center text */
}

.video-container {
    width: 100%;
    max-width: 1000px;
    /* Bigger video */
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    background: #111;
}

.split-text {
    width: 100%;
    max-width: 800px;
    /* Constrain text width for readability */
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.8;
}

.split-text h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 30px;
}

/* --- USER DASHBOARD --- */
.dashboard-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.tab-btn {
    background: none;
    border: none;
    color: #888;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 15px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    letter-spacing: 1px;
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.profile-form .input-group {
    margin-bottom: 20px;
    text-align: left;
}

.profile-form label {
    display: block;
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.profile-form input,
.profile-form textarea {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: white;
    padding: 12px;
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
}

.profile-form input:focus,
.profile-form textarea:focus {
    border-color: var(--gold);
    outline: none;
}

.orders-scroll-list {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.order-item-card {
    background: #0a0a0a;
    border: 1px solid #222;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s;
}

.order-item-card:hover {
    border-color: #444;
}

.order-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 12px;
    border-bottom: 1px solid #1a1a1a;
    padding-bottom: 10px;
}

.order-id {
    color: var(--gold);
    font-weight: bold;
}

.order-products {
    font-size: 0.95rem;
    color: #eee;
    margin-bottom: 12px;
    font-weight: 500;
}

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.order-status {
    background: #1a1a1a;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.status-completed {
    color: #4BB543;
    border: 1px solid rgba(75, 181, 67, 0.2);
}

.status-pending {
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Scrollbar */
.orders-scroll-list::-webkit-scrollbar {
    width: 4px;
}

.orders-scroll-list::-webkit-scrollbar-track {
    background: #000;
}

.orders-scroll-list::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 10px;
}

/* --- STANDALONE AUTH PAGES (CENTERED LUXURY) --- */
.auth-page-wrapper {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 120px 20px 40px;
    /* Added top padding for navbar */
    background: radial-gradient(circle, #0a0a0a 0%, #000000 85%);
}

.auth-centered-container {
    width: 100%;
    max-width: 1150px;
    display: flex;
    background: transparent;
    animation: fadeIn 0.8s ease-out;
}

/* Left Panel - Brand */
.auth-brand-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-right: none;
    position: relative;
    overflow: hidden;
}

.auth-brand-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.auth-brand-content {
    text-align: left;
}

.auth-brand-logo {
    width: 100px;
    margin-bottom: 30px;
}

.auth-brand-name {
    font-size: 2.8rem;
    color: white;
    margin-bottom: 10px;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 2px;
}

.auth-brand-tagline {
    color: var(--gold);
    font-size: 1.1rem;
    letter-spacing: 1px;
    margin-bottom: 40px;
}

.auth-brand-desc {
    color: #888;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 40px;
    max-width: 400px;
}

.auth-trust-list {
    list-style: none;
}

.auth-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.auth-trust-item i {
    color: var(--gold);
    font-size: 0.8rem;
}

.auth-brand-footer {
    display: flex;
    gap: 20px;
    font-size: 0.75rem;
    color: #555;
    font-family: 'Montserrat', sans-serif;
}

.auth-brand-footer a {
    color: inherit;
    text-decoration: none;
    transition: 0.3s;
}

.auth-brand-footer a:hover {
    color: var(--gold);
}

/* Right Panel - Auth Form */
.auth-form-side {
    flex: 1;
    padding: 80px 100px;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.auth-form-side h2 {
    font-size: 2.2rem;
    color: white;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.auth-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 40px;
}

/* Scaled Down Form Components */
.auth-input-group {
    margin-bottom: 20px;
}

.auth-input-group label {
    display: block;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-input-group input {
    width: 100%;
    background: transparent;
    border: 1px solid #222;
    padding: 12px 15px;
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    border-radius: 4px;
    transition: 0.3s;
}

.auth-input-group input:focus {
    border-color: var(--gold);
    outline: none;
    background: rgba(212, 175, 55, 0.02);
}

.auth-form-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.85rem;
}

.auth-link {
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.auth-link:hover {
    color: var(--gold);
}

.btn-auth {
    width: 100%;
    padding: 14px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    border-radius: 4px;
}

.auth-divider {
    text-align: center;
    position: relative;
    margin: 30px 0;
    color: #444;
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #111;
}

.auth-divider::before {
    left: 0;
}

.auth-divider::after {
    right: 0;
}

.btn-social-auth {
    width: 100%;
    background: transparent;
    border: 1px solid #222;
    color: white;
    padding: 12px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-social-auth:hover {
    background: #111;
    border-color: #444;
}

.auth-footer-text {
    text-align: center;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #666;
}

.auth-footer-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

/* Mandatory Checkbox Styling */
.auth-checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 0.8rem;
    color: #888;
}

.auth-checkbox-group input {
    accent-color: var(--gold);
    width: 16px;
    height: 16px;
}

/* Inline Success/Error Messages */
.auth-status-msg {
    padding: 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: none;
}

.auth-status-msg.success {
    background: rgba(76, 175, 80, 0.1);
    color: #4caf50;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.auth-status-msg.error {
    background: rgba(244, 67, 54, 0.1);
    color: #f44336;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

@media (max-width: 1024px) {
    .auth-centered-container {
        flex-direction: column;
        max-width: 500px;
    }

    .auth-brand-side {
        padding: 40px;
        border-right: 1px solid rgba(212, 175, 55, 0.1);
        border-bottom: none;
    }

    .auth-form-side {
        padding: 40px;
    }
}

/* --- CHECKOUT SPECIFIC STATES --- */
.checkout-empty-state,
.auth-required-panel,
.empty-msg-box {
    padding: 60px 20px;
    text-align: center;
    background: #0a0a0a;
    border: 1px dashed #333;
    border-radius: 8px;
    margin: 20px 0;
    animation: fadeIn 0.5s ease;
}

.checkout-empty-state i,
.auth-required-panel i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

.checkout-empty-state p,
.auth-required-panel p {
    color: #888;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.centered-msg {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    width: 100%;
}

.address-grid-checkout.centered-msg {
    grid-template-columns: 1fr;
}

.summary-item-card:hover {
    background: #111;
}

/* Ensure payment step elements are visible when active */
#step-payment .pay-option.selected .pay-body {
    display: block;
}

/* --- GLOBAL REVEAL ANIMATIONS --- */
.reveal {
    opacity: 0 !important;
    transform: translateY(30px) !important;
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.reveal.active {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Staggered Delay Utilities */
.reveal:nth-child(2) {
    transition-delay: 0.1s !important;
}

.reveal:nth-child(3) {
    transition-delay: 0.2s !important;
}

.reveal:nth-child(4) {
    transition-delay: 0.3s !important;
}

.reveal:nth-child(5) {
    transition-delay: 0.4s !important;
}