/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-dark: #111111;
    --bg-darker: #0a0a0a;
    --bg-card: #1a1a1a;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --gold-dark: #b8944f;
    --text-white: #f5f5f5;
    --text-light: #cccccc;
    --text-muted: #999999;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    padding: 4px 8px;
    letter-spacing: 1px;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-white);
}

.logo-img {
    height: 72px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-light);
    transition: color 0.3s;
    position: relative;
    padding: 4px 0;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.header-actions {
    display: flex;
    gap: 24px;
}

.header-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.header-btn:hover {
    color: var(--gold);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-white);
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    padding: 20px 40px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========== SEARCH OVERLAY ========== */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 600px;
    max-width: 90%;
    position: relative;
}

.search-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--gold);
    padding: 20px 50px 20px 0;
    font-size: 24px;
    color: var(--text-white);
    font-family: var(--font-display);
    outline: none;
}

.search-input::placeholder {
    color: var(--text-muted);
}

.search-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
    transition: color 0.3s;
}

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

/* ========== CART SIDEBAR ========== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-sidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s ease;
}

.cart-overlay.active .cart-sidebar {
    transform: translateX(0);
}

.cart-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
}

.cart-close {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.cart-close:hover {
    color: var(--gold);
}

.cart-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
}

.cart-empty {
    color: var(--text-muted);
    text-align: center;
    padding-top: 40px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cart-item-info h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-item-info p {
    color: var(--gold);
    font-size: 14px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 18px;
    transition: color 0.3s;
}

.cart-item-remove:hover {
    color: #ff4444;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    margin-top: 16px;
    border-top: 1px solid var(--gold);
    font-weight: 600;
}

.cart-total span:last-child {
    color: var(--gold);
}

.cart-footer {
    padding: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* ========== ACCOUNT MODAL ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 4px;
    width: 400px;
    max-width: 90%;
    position: relative;
    border: 1px solid rgba(201, 169, 110, 0.2);
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--gold);
    margin-bottom: 24px;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--gold);
}

.account-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: var(--gold);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.account-link {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
}

.account-link a {
    color: var(--gold);
    text-decoration: underline;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2.5px;
    padding: 14px 28px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--gold);
    color: var(--bg-dark);
    border: 2px solid var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    border-radius: 30px;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--bg-dark);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 10px;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-text {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-white);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.btn-text:hover {
    color: var(--gold);
}

.arrow {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn:hover .arrow,
.btn-text:hover .arrow {
    transform: translateX(4px);
}

/* ========== HERO ========== */
.hero {
    padding-top: 70px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    min-height: 560px;
}

.hero-main {
    position: relative;
    display: flex;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 45%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 60%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-white);
}

.hero-title .gold {
    color: var(--gold);
    font-style: italic;
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
}

.hero-divider .line {
    width: 50px;
    height: 1px;
    background: var(--gold);
}

.hero-divider .paw {
    font-size: 14px;
    color: var(--gold);
    filter: grayscale(100%) sepia(50%) hue-rotate(0deg) brightness(0.8);
}

.hero-desc {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 280px;
}

.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 70%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Sidebar */
.hero-sidebar {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(201, 169, 110, 0.15);
}

.sidebar-card {
    padding: 40px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--gold);
    margin-bottom: 12px;
}

.sidebar-paw {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 12px;
    filter: grayscale(100%) sepia(50%) hue-rotate(0deg) brightness(0.8);
}

.sidebar-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.sidebar-product {
    height: 200px;
    overflow: hidden;
    background: #222;
}

/* ========== FEATURES ========== */
.features {
    padding: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.feature-card {
    position: relative;
    height: 380px;
    overflow: hidden;
    cursor: pointer;
}

.feature-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
}

.feature-card:hover .feature-bg {
    transform: scale(1.08);
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 30%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 24px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-white);
    margin-bottom: 8px;
}

.feature-paw-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.line-short {
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.paw-sm {
    font-size: 12px;
    color: var(--gold);
    filter: grayscale(100%) sepia(50%) hue-rotate(0deg) brightness(0.8);
}

.feature-desc {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* ========== TRUST BADGES ========== */
.trust {
    background: var(--bg-darker);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.trust-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.trust-badges {
    display: flex;
    gap: 40px;
    flex: 1;
}

.trust-badge {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.badge-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(201, 169, 110, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.badge-text strong {
    font-size: 11px;
    letter-spacing: 1.5px;
    color: var(--text-white);
    display: block;
    margin-bottom: 4px;
}

.badge-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.trust-brand {
    text-align: right;
    flex-shrink: 0;
}

.trust-logo {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--text-white);
    display: block;
    margin-bottom: 4px;
}

.trust-tagline {
    font-family: var(--font-display);
    font-size: 16px;
    font-style: italic;
    color: var(--text-muted);
}

/* ========== GALLERY ========== */
.gallery {
    padding: 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
}

.gallery-item {
    height: 180px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ========== SHOP SECTION ========== */
.shop-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 40px;
    text-align: center;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(201, 169, 110, 0.1);
    overflow: hidden;
    transition: border-color 0.3s, transform 0.3s;
}

.product-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.product-image {
    height: 240px;
    overflow: hidden;
}

.product-image img {
    transition: transform 0.5s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h4 {
    font-family: var(--font-display);
    font-size: 16px;
    margin-bottom: 8px;
}

.product-price {
    color: var(--gold);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

/* ========== HOW IT WORKS ========== */
.how-section {
    padding: 80px 0;
    background: var(--bg-darker);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
    padding: 30px;
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 16px;
}

.step h4 {
    font-family: var(--font-display);
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-white);
}

.step p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========== ABOUT ========== */
.about-section {
    padding: 80px 0;
    background: var(--bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    height: 400px;
    overflow: hidden;
}

.about-image img {
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.about-content .section-title {
    text-align: left;
}

.about-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-signature {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--bg-darker);
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding: 60px 0 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-desc {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-col h4 {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-sidebar {
        flex-direction: row;
        border-left: none;
        border-top: 1px solid rgba(201, 169, 110, 0.15);
    }

    .sidebar-product {
        height: auto;
        width: 200px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-inner {
        flex-direction: column;
    }

    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }

    .trust-brand {
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-inner {
        padding: 0 20px;
    }

    .hero-content {
        width: 100%;
        padding: 40px 24px;
        background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 70%, rgba(10, 10, 10, 0.6) 100%);
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-sidebar {
        flex-direction: column;
    }

    .sidebar-product {
        width: 100%;
        height: 200px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        height: 300px;
    }

    .trust-badges {
        flex-direction: column;
        gap: 24px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        height: 140px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-container {
        padding: 0 20px;
    }
}
