/* Vaults33 Premium Theme - Complete Styles */
:root {
    --gold: #D4AF37;
    --gold-light: #F4E4A6;
    --gold-dark: #B8860B;
    --black: #000000;
    --black-light: #1A1A1A;
    --black-lighter: #2A2A2A;
    --white: #FFFFFF;
    --gray-light: #F8F8F8;
    --gray: #E5E5E5;
    --gray-dark: #666666;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar */
.top-bar {
    background: var(--black);
    color: var(--gold-light);
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 2px solid var(--gold);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left a {
    color: var(--gold-light);
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s ease;
}

.top-bar-left a:hover {
    color: var(--white);
}

.top-bar-left i {
    margin-right: 5px;
    color: var(--gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Account Dropdown */
.account-dropdown {
    position: relative;
}

.account-toggle {
    background: none;
    border: none;
    color: var(--gold-light);
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 4px;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.account-toggle:hover {
    background: var(--black-light);
}

.account-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-radius: 4px;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.account-dropdown:hover .account-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.account-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    color: var(--gold-light);
    text-decoration: none;
    border-bottom: 1px solid var(--black-lighter);
    transition: all 0.3s ease;
}

.account-item:last-child {
    border-bottom: none;
}

.account-item:hover {
    background: var(--gold);
    color: var(--black);
}

.social-icon {
    color: var(--gold-light);
    text-decoration: none;
    padding: 5px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--white);
}

/* Main Header */
.main-header {
    background: var(--white);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo img {
    max-height: 60px;
    width: auto;
}

/* Search Box */
.search-box {
    flex: 1;
    max-width: 500px;
}

.search-form {
    width: 100%;
}

.search-input-group {
    display: flex;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--gold);
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
}

.search-input:focus {
    border-color: var(--gold-dark);
}

.search-button {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    border-radius: 0 25px 25px 0;
    padding: 12px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.search-button:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-widget {
    position: relative;
}

.cart-toggle {
    background: none;
    border: none;
    color: var(--black);
    cursor: pointer;
    padding: 10px;
    border-radius: 50%;
    transition: background 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.cart-toggle:hover {
    background: var(--gray-light);
}

.cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--gray);
    border-radius: 8px;
    width: 320px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-widget:hover .cart-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-header {
    padding: 15px 20px;
    border-bottom: 1px solid var(--gray);
    background: var(--black);
    color: var(--white);
    border-radius: 8px 8px 0 0;
}

.cart-header h4 {
    margin: 0;
    color: var(--gold);
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.cart-item {
    display: flex;
    gap: 10px;
    padding: 10px;
    border-bottom: 1px solid var(--gray-light);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h5 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: var(--black);
}

.cart-item-details p {
    margin: 0 0 5px 0;
    font-size: 12px;
    color: var(--gray-dark);
}

.cart-item-price {
    font-weight: 600;
    color: var(--gold);
    font-size: 14px;
}

.empty-cart {
    text-align: center;
    padding: 20px;
    color: var(--gray-dark);
    font-style: italic;
}

.cart-footer {
    padding: 15px 20px;
    border-top: 1px solid var(--gray);
    background: var(--gray-light);
    border-radius: 0 0 8px 8px;
}

.cart-total {
    font-weight: 600;
    color: var(--black);
    margin-bottom: 10px;
    text-align: center;
}

.checkout-btn {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: var(--gold-dark);
    text-decoration: none;
    color: var(--black);
}

/* Main Navigation */
.main-navigation {
    background: var(--black);
    border-bottom: 3px solid var(--gold);
}

.nav-content {
    position: relative;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    color: var(--white) !important;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-item.active .nav-link {
    background: var(--black-light);
    color: var(--gold) !important;
}

.nav-link i {
    font-size: 16px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--black-light);
    border: 1px solid var(--gold);
    border-top: none;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-column {
    flex: 1;
    min-width: 200px;
}

.dropdown-title {
    display: block;
    color: var(--gold) !important;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 10px;
    padding: 5px 0;
    border-bottom: 1px solid var(--gold);
    text-transform: uppercase;
    font-size: 14px;
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.dropdown-link {
    color: var(--gold-light) !important;
    text-decoration: none;
    padding: 8px 0;
    transition: all 0.3s ease;
    font-size: 13px;
}

.dropdown-link:hover {
    color: var(--white) !important;
    padding-left: 5px;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.slide-content.left {
    text-align: left;
    align-items: flex-start;
}

.slide-content.center {
    text-align: center;
    align-items: center;
    margin: 0 auto;
}

.slide-content.right {
    text-align: right;
    align-items: flex-end;
    margin-left: auto;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn:hover {
    background: transparent;
    color: var(--gold);
    text-decoration: none;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: transparent;
    color: var(--gold);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 3;
}

.slider-prev,
.slider-next {
    background: rgba(0,0,0,0.5);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--gold);
    color: var(--black);
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Sections */
.products-section {
    padding: 80px 0;
}

.featured-products {
    background: var(--white);
}

.popular-products {
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 10px;
    transition: bottom 0.3s ease;
}

.product-card:hover .product-actions {
    bottom: 0;
}

.action-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.action-btn:disabled:hover {
    background: transparent;
    color: var(--white);
}

.cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.product-info {
    padding: 20px;
}

.product-title {
    margin-bottom: 10px;
}

.product-title a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--gold);
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.old-price {
    font-size: 1rem;
    color: var(--gray-dark);
    text-decoration: line-through;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating i {
    color: var(--gold);
    font-size: 14px;
}

.rating-count {
    font-size: 12px;
    color: var(--gray-dark);
    margin-left: 5px;
}

.no-rating {
    font-size: 12px;
    color: var(--gray-dark);
    font-style: italic;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    border-radius: 50%;
}

.service-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--black);
}

.service-card p {
    color: var(--gray-dark);
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.main-footer {
    background: var(--black);
    color: var(--white);
}

.newsletter-section {
    background: var(--black-light);
    padding: 50px 0;
    border-bottom: 2px solid var(--gold);
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.newsletter-text h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.newsletter-text p {
    color: var(--gold-light);
    margin: 0;
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.form-group {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    background: var(--white);
    color: var(--black);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--gold-dark);
}

.footer-content {
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h4 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--gold-light);
}

.contact-item i {
    color: var(--gold);
    margin-top: 3px;
}

.contact-item a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--white);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.about-text {
    color: var(--gold-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--black-light);
    color: var(--gold);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--gold);
}

.social-link:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    background: var(--black-light);
    padding: 20px 0;
    border-top: 2px solid var(--gold);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
    color: var(--gold-light);
}

.payment-methods img {
    max-height: 30px;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .nav-menu {
        flex-direction: column;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        min-width: auto;
        display: block;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .slide-content h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .cart-dropdown {
        width: 280px;
        right: -50px;
    }
}


/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    margin-right: 10px;
}

.mobile-cart-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--black);
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    position: relative;
}

.mobile-cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--gold);
    color: var(--black);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100%;
    background: var(--black);
    z-index: 1000;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav-header {
    padding: 20px;
    background: var(--black-light);
    border-bottom: 2px solid var(--gold);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo img {
    height: 40px;
}

.mobile-nav-close {
    background: none;
    border: none;
    color: var(--gold);
    font-size: 20px;
    cursor: pointer;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid var(--black-lighter);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-link i {
    width: 20px;
    text-align: center;
    color: var(--gold);
}

.mobile-nav-link:hover {
    background: var(--black-light);
    color: var(--gold);
}

.has-dropdown .mobile-nav-link {
    justify-content: space-between;
}

.mobile-dropdown-arrow,
.mobile-subdropdown-arrow {
    transition: transform 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown-arrow,
.mobile-dropdown-item.active .mobile-subdropdown-arrow {
    transform: rotate(180deg);
}

/* Mobile Dropdown */
.mobile-dropdown {
    background: var(--black-light);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-nav-item.active .mobile-dropdown {
    max-height: 1000px;
}

.mobile-dropdown-item {
    border-bottom: 1px solid var(--black-lighter);
}

.mobile-dropdown-item:last-child {
    border-bottom: none;
}

.mobile-dropdown-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 12px 50px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.mobile-dropdown-link:hover {
    color: var(--white);
    background: var(--black-lighter);
}

/* Mobile Subdropdown */
.mobile-subdropdown {
    background: var(--black-lighter);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-item.active .mobile-subdropdown {
    max-height: 1000px;
}

.mobile-subdropdown-link {
    display: block;
    padding: 10px 20px 10px 70px;
    color: var(--gold-light);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-subdropdown-link:last-child {
    border-bottom: none;
}

.mobile-subdropdown-link:hover {
    color: var(--white);
    background: rgba(212, 175, 55, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Show mobile toggles */
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-cart-toggle {
        display: block;
    }
    
    /* Hide desktop navigation */
    .main-navigation {
        display: none;
    }
    
    /* Hide desktop cart */
    .header-actions {
        display: none;
    }
    
    /* Adjust header layout */
    .header-content {
        justify-content: space-between;
    }
    
    .logo {
        flex: 1;
        text-align: center;
    }
    
    .search-box {
        display: none;
    }
    
    /* Mobile specific styles */
    body.mobile-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .mobile-nav {
        width: 280px;
    }
    
    .mobile-nav-link {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .mobile-dropdown-link {
        padding: 10px 15px 10px 45px;
    }
    
    .mobile-subdropdown-link {
        padding: 8px 15px 8px 60px;
    }
}

/* Product Category Page Styles */
.category-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.category-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav {
    background: var(--gray-light);
    padding: 15px 0;
    border-bottom: 1px solid var(--gray);
}

.breadcrumb-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    font-size: 14px;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: var(--gray-dark);
}

.breadcrumb-list a {
    color: var(--gray-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

.breadcrumb-list .active {
    color: var(--gold);
    font-weight: 600;
}

/* Shop Controls */
.shop-controls {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    display: flex;
    justify-content: between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.control-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.view-mode {
    display: flex;
    gap: 10px;
}

.view-btn {
    background: var(--gray-light);
    border: 1px solid var(--gray);
    color: var(--gray-dark);
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.product-count {
    color: var(--black);
    font-weight: 600;
    font-size: 16px;
}

.control-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sort-label {
    color: var(--gray-dark);
    font-weight: 500;
}

.sort-select {
    padding: 10px 15px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    background: var(--white);
    color: var(--black);
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.sort-select:focus {
    outline: none;
    border-color: var(--gold);
}

/* Products Grid */
.products-grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.products-list-view {
    display: none;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.products-grid-view.active,
.products-list-view.active {
    display: grid;
}

/* Product Card - Grid View */
.product-card-grid {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card-grid:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image-grid {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card-grid:hover .product-image-grid img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gold);
    color: var(--black);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.product-actions-grid {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    display: flex;
    justify-content: center;
    padding: 15px;
    gap: 10px;
    transition: bottom 0.3s ease;
    z-index: 3;
}

.product-card-grid:hover .product-actions-grid {
    bottom: 0;
}

.action-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.action-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.action-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.action-btn:disabled:hover {
    background: transparent;
    color: var(--white);
}

.product-info-grid {
    padding: 20px;
    text-align: center;
}

.product-title-grid {
    margin-bottom: 10px;
}

.product-title-grid a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-title-grid a:hover {
    color: var(--gold);
    text-decoration: none;
}

.product-price-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gold);
}

.old-price {
    font-size: 1rem;
    color: var(--gray-dark);
    text-decoration: line-through;
}

.product-rating-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.product-rating-grid i {
    color: var(--gold);
    font-size: 14px;
}

.product-rating-grid .fa-star-o {
    color: var(--gray);
}

.rating-count {
    font-size: 12px;
    color: var(--gray-dark);
    margin-left: 5px;
}

/* Product Card - List View */
.product-card-list {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    padding: 20px;
}

.product-card-list:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-image-list {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}

.product-image-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-title-list {
    margin-bottom: 10px;
}

.product-title-list a {
    color: var(--black);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-title-list a:hover {
    color: var(--gold);
    text-decoration: none;
}

.product-description {
    color: var(--gray-dark);
    line-height: 1.6;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-meta-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.product-price-list {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-rating-list {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-rating-list i {
    color: var(--gold);
    font-size: 14px;
}

.product-actions-list {
    display: flex;
    gap: 10px;
}

/* No Products Message */
.no-products {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.no-products i {
    font-size: 4rem;
    color: var(--gray);
    margin-bottom: 20px;
    display: block;
}

.no-products h3 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.no-products p {
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.no-products .btn {
    background: var(--gold);
    color: var(--black);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
}

.no-products .btn:hover {
    background: transparent;
    color: var(--gold);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-header {
        padding: 40px 0;
    }
    
    .category-header h1 {
        font-size: 2rem;
    }
    
    .shop-controls {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .control-left,
    .control-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .products-grid-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .product-card-list {
        flex-direction: column;
    }
    
    .product-image-list {
        width: 100%;
        height: 200px;
    }
    
    .product-meta-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .products-grid-view {
        grid-template-columns: 1fr;
    }
    
    .category-header h1 {
        font-size: 1.5rem;
    }
    
    .control-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .product-count {
        font-size: 14px;
    }
}

/* FAQ Page Styles */
.faq-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/uploads/<?php echo $faq_banner; ?>') center/cover;
    opacity: 0.3;
}

.faq-hero-content {
    position: relative;
    z-index: 2;
}

.faq-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-hero p {
    font-size: 1.2rem;
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.breadcrumb-custom {
    background: var(--gray-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--gray);
}

.breadcrumb-custom .breadcrumb {
    background: none;
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
}

.breadcrumb-custom .breadcrumb-item {
    font-size: 14px;
    color: var(--gray-dark);
}

.breadcrumb-custom .breadcrumb-item a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-custom .breadcrumb-item a:hover {
    color: var(--gold-dark);
}

.breadcrumb-custom .breadcrumb-item.active {
    color: var(--black);
}

.breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
    content: '>';
    color: var(--gray-dark);
    margin: 0 10px;
}

.faq-section {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-header p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
}

.faq-search {
    max-width: 500px;
    margin: 0 auto 40px;
}

.search-input-wrapper {
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid var(--gold);
    border-radius: 25px;
    font-size: 16px;
    background: var(--white);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--gold-dark);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.faq-search-button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-search-button:hover {
    background: var(--gold-dark);
}

.faq-accordion {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--gray);
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item.active {
    background: var(--gray-light);
}

.faq-question {
    padding: 25px 30px;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.faq-question:hover {
    background: var(--gray-light);
}

.faq-question.active {
    background: var(--gold);
    color: var(--black);
}

.faq-icon {
    color: var(--gold);
    font-size: 20px;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-question.active .faq-icon {
    color: var(--black);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    background: var(--white);
}

.faq-answer.active {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 0 30px 30px;
    color: var(--gray-dark);
    line-height: 1.7;
    font-size: 16px;
}

.faq-answer-content h5 {
    color: var(--gold);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.faq-contact {
    background: var(--black);
    padding: 60px 0;
    text-align: center;
    margin-top: 60px;
    border-radius: 15px;
}

.faq-contact h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-contact p {
    color: var(--gold-light);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gold);
    color: var(--black);
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.contact-button:hover {
    background: transparent;
    color: var(--gold);
    text-decoration: none;
}

/* No Results State */
.faq-no-results {
    text-align: center;
    padding: 60px 20px;
    display: none;
}

.faq-no-results.active {
    display: block;
}

.faq-no-results i {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.faq-no-results h4 {
    color: var(--black);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.faq-no-results p {
    color: var(--gray-dark);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-hero {
        padding: 60px 0;
    }
    
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .faq-hero p {
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-header h2 {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 16px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px;
    }
    
    .faq-contact {
        padding: 40px 20px;
        margin-top: 40px;
    }
    
    .faq-contact h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-hero h1 {
        font-size: 1.5rem;
    }
    
    .faq-header h2 {
        font-size: 1.5rem;
    }
    
    .faq-question {
        padding: 15px;
        font-size: 15px;
    }
    
    .faq-answer-content {
        padding: 0 15px 15px;
        font-size: 14px;
    }
}
/* Registration Page Styles */
.registration-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.registration-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.registration-hero p {
    font-size: 1.1rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

.registration-container {
    padding: 80px 0;
    background: var(--gray-light);
}

.registration-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    overflow: hidden;
}

.registration-header {
    background: var(--black);
    color: var(--white);
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.registration-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
    color: var(--gold);
}

.registration-header p {
    color: var(--gold-light);
    margin: 10px 0 0 0;
}

.registration-body {
    padding: 40px;
}

.alert-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-weight: 500;
}

.alert-error {
    background: #fee;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background: #eff8f0;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-label.required::after {
    content: " *";
    color: #dc3545;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control.select2 {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px 12px;
    padding-right: 40px;
    appearance: none;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-full-width {
    grid-column: 1 / -1;
}

.submit-btn {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.login-link {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--gray);
}

.login-link p {
    color: var(--gray-dark);
    margin: 0;
}

.login-link a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.login-link a:hover {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* Password strength indicator */
.password-strength {
    margin-top: 5px;
    height: 4px;
    background: var(--gray);
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.password-strength.weak .password-strength-bar {
    background: #dc3545;
    width: 33%;
}

.password-strength.medium .password-strength-bar {
    background: #ffc107;
    width: 66%;
}

.password-strength.strong .password-strength-bar {
    background: #28a745;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .registration-hero {
        padding: 40px 0;
    }
    
    .registration-hero h1 {
        font-size: 2rem;
    }
    
    .registration-container {
        padding: 40px 0;
    }
    
    .registration-body {
        padding: 25px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .registration-header {
        padding: 20px;
    }
    
    .registration-header h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .registration-body {
        padding: 20px 15px;
    }
    
    .registration-hero h1 {
        font-size: 1.5rem;
    }
    
    .registration-hero p {
        font-size: 1rem;
    }
    
    .form-control {
        padding: 10px 12px;
    }
    
    .submit-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* Form validation styles */
.form-control.error {
    border-color: #dc3545;
}

.form-control.valid {
    border-color: #28a745;
}

.form-hint {
    font-size: 12px;
    color: var(--gray-dark);
    margin-top: 5px;
    display: block;
}

/* Loading state */
.submit-btn.loading {
    position: relative;
    color: transparent;
}

.submit-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


/* Checkout Page Styles */
.checkout-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.checkout-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.checkout-hero p {
    font-size: 1.1rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

.checkout-container {
    padding: 60px 0;
    background: var(--gray-light);
}

.checkout-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    overflow: hidden;
    margin-bottom: 30px;
}

.checkout-header {
    background: var(--black);
    color: var(--white);
    padding: 25px 30px;
    border-bottom: 3px solid var(--gold);
}

.checkout-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkout-header h3 i {
    font-size: 1.3rem;
}

.checkout-body {
    padding: 30px;
}

/* Order Summary Table */
.order-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 0;
    background: var(--white);
}

.order-summary-table th {
    background: var(--black-light);
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    padding: 15px 12px;
    border: 1px solid var(--gray);
    text-align: center;
}

.order-summary-table td {
    padding: 15px 12px;
    border: 1px solid var(--gray);
    text-align: center;
    vertical-align: middle;
}

.order-summary-table .product-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.order-summary-table .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-summary-table .product-name {
    font-weight: 600;
    color: var(--black);
    text-align: left;
}

.order-summary-table .product-attributes {
    font-size: 12px;
    color: var(--gray-dark);
    margin-top: 5px;
}

.order-summary-table .price {
    font-weight: 600;
    color: var(--gold);
}

.order-summary-table .quantity {
    font-weight: 600;
    color: var(--black);
}

.order-summary-table .subtotal {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.1rem;
}

.order-summary-table tfoot th {
    background: var(--black);
    color: var(--white);
    font-size: 14px;
    text-align: right;
}

.order-summary-table tfoot td {
    background: var(--gray-light);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--black);
}

.order-summary-table .shipping-cost {
    color: var(--success);
}

.order-summary-table .final-total {
    color: var(--gold);
    font-size: 1.2rem;
}

/* Address Cards */
.address-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.address-card {
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.address-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.address-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
}

.address-card-header i {
    color: var(--gold);
    font-size: 1.2rem;
}

.address-card-header h4 {
    margin: 0;
    color: var(--black);
    font-weight: 600;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.address-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--gray-light);
}

.address-row:last-child {
    border-bottom: none;
}

.address-label {
    font-weight: 600;
    color: var(--black);
    min-width: 120px;
}

.address-value {
    color: var(--gray-dark);
    text-align: right;
    flex: 1;
}

/* Payment Methods */
.payment-methods {
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray);
    overflow: hidden;
}

.payment-header {
    background: var(--black);
    color: var(--white);
    padding: 20px 25px;
    border-bottom: 2px solid var(--gold);
}

.payment-header h3 {
    margin: 0;
    color: var(--gold);
    font-size: 1.3rem;
}

.payment-body {
    padding: 25px;
}

.payment-method-select {
    margin-bottom: 25px;
}

.payment-method-select .form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--black);
    font-size: 14px;
    text-transform: uppercase;
}

.payment-method-select select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
}

.payment-method-select select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.payment-form {
    background: var(--gray-light);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--gray);
    margin-bottom: 20px;
    display: none;
}

.payment-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.payment-form h4 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.bank-details {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--gray);
    margin-bottom: 20px;
}

.bank-details h5 {
    color: var(--black);
    margin-bottom: 10px;
    font-size: 1rem;
}

.bank-details pre {
    white-space: pre-wrap;
    font-family: inherit;
    color: var(--gray-dark);
    margin: 0;
}

.transaction-info {
    margin-bottom: 20px;
}

.transaction-info label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--black);
}

.transaction-info textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 14px;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.transaction-info textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Buttons */
.checkout-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    color: var(--black);
}

.btn-secondary {
    background: transparent;
    color: var(--black);
    border-color: var(--gray);
}

.btn-secondary:hover {
    background: var(--gray);
    border-color: var(--gray-dark);
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--black);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.btn-danger:hover {
    background: #c82333;
    border-color: #bd2130;
    transform: translateY(-2px);
    text-decoration: none;
    color: var(--white);
}

/* Alert Messages */
.alert-message {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.alert-warning {
    background: #fff3cd;
    border-color: var(--warning);
    color: #856404;
}

.alert-warning i {
    color: var(--warning);
    font-size: 1.2rem;
}

.alert-warning a {
    color: #856404;
    text-decoration: underline;
    font-weight: 600;
}

.alert-warning a:hover {
    color: #533f03;
}

/* Login Required */
.login-required {
    text-align: center;
    padding: 60px 30px;
    background: var(--white);
    border-radius: 12px;
    border: 2px solid var(--gray);
}

.login-required h3 {
    color: var(--black);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.login-required p {
    color: var(--gray-dark);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .checkout-hero {
        padding: 40px 0;
    }
    
    .checkout-hero h1 {
        font-size: 2rem;
    }
    
    .checkout-container {
        padding: 40px 0;
    }
    
    .checkout-body {
        padding: 20px;
    }
    
    .order-summary-table {
        font-size: 12px;
    }
    
    .order-summary-table th,
    .order-summary-table td {
        padding: 10px 8px;
    }
    
    .address-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkout-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .payment-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .checkout-hero h1 {
        font-size: 1.5rem;
    }
    
    .checkout-body {
        padding: 15px;
    }
    
    .order-summary-table {
        font-size: 11px;
    }
    
    .order-summary-table th,
    .order-summary-table td {
        padding: 8px 5px;
    }
    
    .address-card {
        padding: 20px;
    }
    
    .address-row {
        flex-direction: column;
        gap: 5px;
    }
    
    .address-label {
        min-width: auto;
    }
    
    .address-value {
        text-align: left;
    }
}
/* Cart Page Styles */
.cart-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
}

.cart-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gold);
}

.cart-hero p {
    font-size: 1.1rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
}

.cart-container {
    padding: 80px 0;
    background: var(--gray-light);
}

.empty-cart-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
}

.empty-cart-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.empty-cart-state h2 {
    font-size: 2rem;
    color: var(--black);
    margin-bottom: 15px;
    font-weight: 700;
}

.empty-cart-state p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
}

.continue-shopping-btn {
    background: var(--gold);
    color: var(--black);
    padding: 15px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    display: inline-block;
}

.continue-shopping-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Cart Table Styles */
.cart-table-wrapper {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    overflow: hidden;
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table thead {
    background: var(--black);
}

.cart-table th {
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid var(--gold);
}

.cart-table tbody tr {
    border-bottom: 1px solid var(--gray);
    transition: background 0.3s ease;
}

.cart-table tbody tr:hover {
    background: var(--gray-light);
}

.cart-table td {
    padding: 20px 15px;
    vertical-align: middle;
}

/* Product Image */
.product-thumbnail img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.product-thumbnail img:hover {
    border-color: var(--gold);
    transform: scale(1.05);
}

/* Product Title */
.product-title a {
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: var(--gold);
    text-decoration: none;
}

/* Product Attributes */
.product-attribute {
    color: var(--gray-dark);
    font-size: 14px;
    font-weight: 500;
}

/* Price Styling */
.pro-price span {
    font-weight: 700;
    color: var(--gold);
    font-size: 16px;
}

/* Quantity Input */
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quantity-input {
    width: 80px;
    padding: 8px 12px;
    border: 2px solid var(--gray);
    border-radius: 6px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.quantity-btn {
    background: var(--gold);
    color: var(--black);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.quantity-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
}

/* Subtotal */
.pro-subtotal span {
    font-weight: 700;
    color: var(--black);
    font-size: 16px;
}

/* Remove Button */
.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-btn:hover {
    background: #fee;
    color: #dc3545;
    transform: scale(1.1);
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    margin-bottom: 30px;
}

.continue-shopping {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.continue-shopping:hover {
    color: var(--gold);
    text-decoration: none;
}

.update-cart-btn {
    background: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-cart-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 2px solid var(--gold);
    padding: 30px;
}

.cart-summary h3 {
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    text-align: center;
}

.summary-table {
    width: 100%;
    margin-bottom: 25px;
}

.summary-table tr {
    border-bottom: 1px solid var(--gray);
}

.summary-table td {
    padding: 12px 0;
    font-size: 14px;
}

.summary-table .label {
    color: var(--gray-dark);
    font-weight: 500;
}

.summary-table .value {
    color: var(--black);
    font-weight: 600;
    text-align: right;
}

.summary-table .total {
    border-top: 2px solid var(--gold);
}

.summary-table .total .label {
    color: var(--black);
    font-size: 16px;
    font-weight: 700;
}

.summary-table .total .value {
    color: var(--gold);
    font-size: 18px;
    font-weight: 700;
}

.checkout-btn {
    display: block;
    width: 100%;
    background: var(--gold);
    color: var(--black);
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 16px;
}

.checkout-btn:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    color: var(--black);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cart-hero {
        padding: 40px 0;
    }
    
    .cart-hero h1 {
        font-size: 2rem;
    }
    
    .cart-container {
        padding: 40px 0;
    }
    
    .cart-table-wrapper {
        overflow-x: auto;
    }
    
    .cart-table {
        min-width: 800px;
    }
    
    .cart-actions {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .empty-cart-state {
        padding: 50px 20px;
    }
    
    .empty-cart-state h2 {
        font-size: 1.5rem;
    }
    
    .cart-summary {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .cart-hero h1 {

        font-size: 1.5rem;
    }
    
    .cart-hero p {
        font-size: 1rem;
    }
    
    .empty-cart-state {
        padding: 40px 15px;
    }
    
    .empty-cart-icon {
        font-size: 3rem;
    }
    
    .cart-table td,
    .cart-table th {
        padding: 12px 8px;
        font-size: 12px;
    }
    
    .product-thumbnail img {
        width: 60px;
        height: 60px;
    }
    
    .quantity-input {
        width: 60px;
        padding: 6px 8px;
    }
    
    .update-cart-btn,
    .checkout-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
}

/* Loading States */
.update-cart-btn.loading {
    position: relative;
    color: transparent;
}

.update-cart-btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid var(--black);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Empty State Animation */
.empty-cart-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Success Messages */
.cart-success {
    background: #eff8f0;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.cart-error {
    background: #fee;
    border: 1px solid #f5c6cb;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Email Verification Page Styles */
.verification-hero {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.verification-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="%23D4AF37" opacity="0.1"><path d="M0,100 L250,50 L500,100 L750,50 L1000,100 L1000,0 L0,0 Z"/></svg>');
    background-size: cover;
    background-position: bottom;
}

.verification-hero-content {
    position: relative;
    z-index: 2;
}

.verification-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.verification-hero p {
    font-size: 1.2rem;
    color: var(--gold-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.verification-container {
    padding: 100px 0;
    background: var(--gray-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.verification-card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 3px solid var(--gold);
    max-width: 600px;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    position: relative;
}

.verification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gold);
}

.verification-icon {
    width: 100px;
    height: 100px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -50px auto 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    animation: pulse 2s infinite;
}

.verification-icon i {
    font-size: 48px;
    color: var(--black);
}

.verification-content {
    padding: 40px;
}

.verification-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.verification-message {
    font-size: 1.1rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

.verification-message.success {
    color: #28a745;
}

.verification-message.error {
    color: #dc3545;
}

.verification-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.verification-btn {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid transparent;
}

.verification-btn-primary {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.verification-btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    text-decoration: none;
    color: var(--black);
}

.verification-btn-secondary {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--gold);
}

.verification-btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
    text-decoration: none;
}

/* Loading State */
.verification-loading {
    text-align: center;
    padding: 60px 40px;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--gray);
    border-top: 4px solid var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 30px;
}

.loading-text {
    font-size: 1.2rem;
    color: var(--gray-dark);
    font-weight: 500;
}

/* Status Messages */
.status-message {
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.status-success {
    background: #eff8f0;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.status-error {
    background: #fee;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.status-icon {
    font-size: 24px;
    flex-shrink: 0;
}

/* Countdown Timer */
.verification-timer {
    background: var(--black);
    color: var(--white);
    padding: 15px 20px;
    border-radius: 10px;
    margin-top: 20px;
    display: inline-block;
}

.verification-timer span {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .verification-hero {
        padding: 60px 0;
    }
    
    .verification-hero h1 {
        font-size: 2.2rem;
    }
    
    .verification-container {
        padding: 60px 0;
    }
    
    .verification-content {
        padding: 30px 20px;
    }
    
    .verification-title {
        font-size: 1.6rem;
    }
    
    .verification-icon {
        width: 80px;
        height: 80px;
        margin: -40px auto 20px;
    }
    
    .verification-icon i {
        font-size: 36px;
    }
    
    .verification-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .verification-hero h1 {
        font-size: 1.8rem;
    }
    
    .verification-hero p {
        font-size: 1rem;
    }
    
    .verification-container {
        padding: 40px 15px;
    }
    
    .verification-title {
        font-size: 1.4rem;
    }
    
    .verification-message {
        font-size: 1rem;
    }
    
    .verification-actions {
        gap: 10px;
    }
}