/* =========================
   GLOBAL RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Helvetica, Arial, sans-serif;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background: #fff;
    color: #111;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
}

main {
    flex: 1;
}

/* =========================
   HEADER
========================= */
.site-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 18px 40px;
    position: relative;
    z-index: 2000;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* LEFT LOGO */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 34px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}

/* RIGHT SIDE */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-left: auto;
    flex-shrink: 0;
}

/* HOME + SHOP LINKS */
.nav-links {
    display: flex !important;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    opacity: 0.6;
}

/* =========================
   HAMBURGER
========================= */
.menu-wrapper {
    position: relative;
    margin-left: 12px;
    margin-right: 0;
    flex-shrink: 0;
}

.menu-toggle {
    display: none;
}

.hamburger {
    width: 28px;
    height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 3001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #111;
    transition: all 0.3s ease;
}

/* Animate to X */
.menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
}

.menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* =========================
   SIDE MENU (RIGHT SLIDE)
========================= */
.side-menu {
    position: fixed;
    top: 0;
    right: -340px;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background: #fff;
    padding: 90px 28px 30px;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.08);
    transition: right 0.35s ease;
    z-index: 3000;
    overflow-y: auto;
}

.menu-toggle:checked + .hamburger + .side-menu {
    right: 0;
}

/* Overlay */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 2990;
}

.menu-toggle:checked + .hamburger + .side-menu + .menu-overlay {
    opacity: 1;
    visibility: visible;
}

/* =========================
   SIDE NAV
========================= */
.side-nav {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.side-nav a,
.dropdown-menu summary {
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.side-nav a:hover,
.dropdown-menu summary:hover {
    opacity: 0.6;
}

.dropdown-menu {
    display: block;
}

.dropdown-menu summary::-webkit-details-marker {
    display: none;
}

.dropdown-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
    margin-left: 10px;
}

.dropdown-links a {
    font-size: 13px;
    color: #555;
    text-transform: none;
    letter-spacing: 0.4px;
}

/* =========================
   VIDEO HOME PAGE
========================= */
.video-container {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.content {
    position: absolute;
    top: 40%;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.content h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

.bottom-button {
    position: absolute;
    bottom: 40px;
    width: 100%;
    text-align: center;
    z-index: 2;
}

.shop-btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background: #fff;
    color: #111;
}

/* =========================
   SHOP / ABOUT / FAQ / COLLECTION PAGES
========================= */
.shop-page {
    width: 100%;
    padding: 70px 40px 80px;
    background: #fff;
}

.shop-container {
    max-width: 1280px;
    margin: 0 auto;
}

.shop-title {
    font-size: 2.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 12px;
    color: #111;
}

.shop-subtitle {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* PRODUCT CARDS */
.product-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 15px;
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
}

.product-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* FAQ CARDS */
.faq-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    transition: transform 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-5px);
}

.faq-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #111;
}

.faq-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* =========================
   COMING SOON
========================= */
.coming-soon-wrapper {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    letter-spacing: 3px;
    text-align: center;
    padding: 20px;
}

.coming-soon-wrapper h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.coming-soon-wrapper p {
    font-size: 14px;
    color: #666;
}

/* =========================
   FOOTER
========================= */
.site-footer {
    background: #111;
    color: #fff;
    padding: 60px 40px 20px;
    margin-top: auto;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 15px;
    font-size: 14px;
    letter-spacing: 1px;
}

.footer-column p {
    font-size: 13px;
    margin-bottom: 8px;
    color: #ccc;
}

.footer-column a {
    text-decoration: none;
    color: #ccc;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 12px;
    color: #777;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 992px) {
    .site-header {
        padding: 16px 24px;
    }

    .logo img {
        height: 30px;
        max-width: 150px;
    }

    .header-right {
        gap: 14px;
    }

    .nav-links {
        gap: 14px;
    }

    .nav-links a {
        font-size: 12px;
    }
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {
    .site-header {
        padding: 14px 16px;
    }

    .header-container {
        gap: 10px;
    }

    .logo img {
        height: 26px;
        max-width: 120px;
    }

    .header-right {
        gap: 10px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 0.6px;
    }

    .hamburger {
        width: 24px;
        height: 18px;
    }

    .side-menu {
        width: 260px;
        right: -280px;
        padding: 80px 22px 24px;
    }

    .side-nav a,
    .dropdown-menu summary {
        font-size: 13px;
    }

    .dropdown-links a {
        font-size: 12px;
    }

    .shop-page {
        padding: 50px 16px 60px;
    }

    .shop-title {
        font-size: 2rem;
    }

    .shop-subtitle {
        margin-bottom: 35px;
    }

    .shop-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .content h1 {
        font-size: 2rem;
    }

    .shop-btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .coming-soon-wrapper h1 {
        font-size: 34px;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }
}

/* =========================
   EXTRA SMALL PHONES
========================= */
@media (max-width: 480px) {
    .site-header {
        padding: 12px 12px;
    }

    .logo img {
        height: 22px;
        max-width: 100px;
    }

    .header-right {
        gap: 8px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a {
        font-size: 10px;
        letter-spacing: 0.4px;
    }

    .hamburger {
        width: 22px;
        height: 16px;
    }

    .shop-title {
        font-size: 1.6rem;
    }

    .shop-subtitle {
        font-size: 13px;
    }

    .content h1 {
        font-size: 1.6rem;
    }
}