* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 3px solid #d4af37;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo img {
    height: 60px;
    width: auto;
    margin-bottom: 5px;
    object-fit: contain;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    color: #d4af37;
}

.tagline {
    font-size: 0.9rem;
    color: #d4af37;
    letter-spacing: 2px;
    text-transform: uppercase;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

nav > ul > li {
    position: relative;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #d4af37;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a1a1a;
    border: 2px solid #d4af37;
    border-radius: 5px;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    gap: 0;
    margin-top: 10px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.2);
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #ffffff;
    border-left: 3px solid transparent;
    transition: all 0.3s;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    border-left-color: #d4af37;
    color: #d4af37;
}

.nav-cta {
    background: #d4af37 !important;
    color: #000000 !important;
    padding: 8px 20px !important;
    border-radius: 5px !important;
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: #ffd700 !important;
    color: #000000 !important;
}

.currency-selector select {
    background: #1a1a1a;
    color: #d4af37;
    border: 2px solid #d4af37;
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.currency-selector select:hover {
    background: #d4af37;
    color: #000000;
}

.currency-selector select:focus {
    outline: none;
    border-color: #ffd700;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: #d4af37;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
}

.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.btn-primary {
    background: #d4af37;
    color: #000000;
}

.btn-primary:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000000;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature {
    background: rgba(212, 175, 55, 0.05);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.icon {
    font-size: 3rem;
}

.feature h3 {
    color: #d4af37;
    font-size: 1.5rem;
    margin: 20px 0 15px;
}

/* Sections */
.section {
    padding: 80px 0;
    background: #0a0a0a;
}

.section-alt {
    background: #121212;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: #d4af37;
    text-transform: uppercase;
}

.subsection-title {
    font-size: 1.8rem;
    margin: 50px 0 30px 0;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 15px;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
}

/* Product Card - SIMPLIFIED */
.product-card {
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    color: #ffffff;
}

.product-type {
    padding: 0 20px;
    color: #d4af37;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.description {
    padding: 10px 20px;
    color: #cccccc;
    font-size: 0.95rem;
}

.price {
    padding: 10px 20px;
    font-size: 2rem;
    font-weight: 800;
    color: #d4af37;
}

/* BUTTON - COMPLETELY CLEAN */
.btn-acquire {
    display: block !important;
    width: calc(100% - 40px) !important;
    margin: 0 20px 20px !important;
    padding: 15px !important;
    background: #d4af37 !important;
    color: #000000 !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    text-align: center !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    position: relative !important;
}

.btn-acquire:hover {
    background: #ffd700 !important;
    color: #000000 !important;
}

/* Footer */
footer {
    background: #000000;
    border-top: 3px solid #d4af37;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section strong {
    color: #ffffff;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    color: #888888;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.payment-methods {
    font-size: 0.85rem;
    color: #666666;
}

/* Trust Section */
.trust-section {
    background: #0f0f0f;
    padding: 50px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.trust-item {
    padding: 20px;
}

.trust-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.trust-item h4 {
    color: #d4af37;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.trust-item p {
    color: #aaaaaa;
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials-section {
    background: #0a0a0a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stars {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.testimonial-text {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #d4af37;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-location {
    color: #888888;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    background: #121212;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text h3 {
    color: #d4af37;
    font-size: 1.6rem;
    margin-bottom: 15px;
    margin-top: 30px;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    color: #cccccc;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.stat-item {
    padding: 20px;
    background: rgba(212, 175, 55, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-label {
    color: #aaaaaa;
    font-size: 0.95rem;
}

/* Policies Section */
.policies-section {
    background: #0a0a0a;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.policy-card {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.policy-card h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.policy-card ul {
    list-style: none;
    padding: 0;
}

.policy-card ul li {
    color: #cccccc;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.policy-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

/* Shopping Cart */
.cart-button {
    position: relative;
    background: transparent;
    border: 2px solid #d4af37;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.cart-button:hover {
    background: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

.cart-sidebar {
    position: fixed;
    right: -450px;
    top: 0;
    width: 450px;
    height: 100vh;
    background: #1a1a1a;
    border-left: 3px solid #d4af37;
    z-index: 10000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    color: #d4af37;
    font-size: 1.8rem;
    margin: 0;
}

.close-cart {
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.close-cart:hover {
    transform: rotate(90deg);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    color: #fff;
    font-size: 0.95rem;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.cart-item-price {
    color: #d4af37;
    font-weight: 600;
    margin: 5px 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.cart-item-quantity button {
    background: #d4af37;
    color: #000;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    transition: background 0.2s;
}

.cart-item-quantity button:hover {
    background: #ffd700;
}

.cart-item-quantity span {
    color: #fff;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.remove-item {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255,0,0,0.7);
    color: #fff;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: background 0.2s;
}

.remove-item:hover {
    background: rgba(255,0,0,1);
}

.cart-footer {
    padding: 25px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
}

.cart-total-amount {
    color: #d4af37;
}

.btn-checkout {
    width: 100%;
    padding: 15px;
    background: #d4af37;
    color: #000;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 10px;
}

.btn-checkout:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

.btn-clear {
    width: 100%;
    padding: 12px;
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-clear:hover {
    background: rgba(212, 175, 55, 0.1);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-notification {
    position: fixed;
    top: 100px;
    right: -300px;
    background: #d4af37;
    color: #000;
    padding: 15px 25px;
    border-radius: 8px;
    font-weight: 600;
    z-index: 10001;
    transition: right 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.cart-notification.show {
    right: 20px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background: #1a1a1a;
    border-top: 3px solid #d4af37;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.5);
    transition: bottom 0.5s ease;
}

.cookie-consent.show {
    bottom: 0;
}

.cookie-consent-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 25px;
    align-items: center;
}

.cookie-icon {
    font-size: 3rem;
}

.cookie-text h3 {
    color: #d4af37;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: #d4af37;
    text-decoration: underline;
}

.cookie-text a:hover {
    color: #ffd700;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: #d4af37;
    color: #000;
}

.cookie-btn-accept:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

.cookie-btn-reject {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.cookie-btn-reject:hover {
    background: rgba(212, 175, 55, 0.1);
}

.cookie-btn-customize {
    background: #333;
    color: #fff;
    border: 2px solid #666;
}

.cookie-btn-customize:hover {
    background: #444;
    border-color: #d4af37;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #1a1a1a;
    border: 3px solid #d4af37;
    border-radius: 10px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.cookie-modal-header h2 {
    color: #d4af37;
    margin: 0;
    font-size: 1.8rem;
}

.close-modal {
    background: transparent;
    border: none;
    color: #d4af37;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.close-modal:hover {
    transform: rotate(90deg);
}

.cookie-modal-body {
    padding: 25px;
}

.cookie-modal-body > p {
    color: #ccc;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cookie-option {
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-option-header {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.cookie-option h4 {
    color: #d4af37;
    margin: 0 0 8px 0;
    font-size: 1.1rem;
}

.cookie-option p {
    color: #aaa;
    margin: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.required-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: #d4af37;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Toggle Switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
    flex-shrink: 0;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: 0.3s;
    border-radius: 26px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}

.cookie-switch input:checked + .slider {
    background-color: #d4af37;
}

.cookie-switch input:checked + .slider:before {
    transform: translateX(24px);
}

.cookie-switch input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 25px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-btn-save {
    background: #d4af37;
    color: #000;
}

.cookie-btn-save:hover {
    background: #ffd700;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie-consent-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .cookie-icon {
        font-size: 2rem;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .cookie-modal-content {
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }

    .cookie-modal-footer {
        flex-direction: column;
    }

    .cookie-modal-footer .cookie-btn {
        width: 100%;
    }
}
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.5rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .policies-grid {
        grid-template-columns: 1fr;
    }
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    .dropdown-menu {
        position: static;
        display: none;
        margin-top: 5px;
    }
    .dropdown:hover .dropdown-menu {
        display: none;
    }
}
