@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Baloo+2:wght@400..800&family=Baloo+Bhaijaan+2:wght@400..800&family=Butcherman&family=Cutive+Mono&family=Fredoka:wght@300..700&family=Gothic+A1&family=Gravitas+One&family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&family=Luckiest+Guy&family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nanum+Pen+Script&family=Nata+Sans:wght@100..900&family=Nosifer&family=Noto+Sans+NKo&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Paprika&family=Parisienne&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+VN+Guides&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Protest+Revolution&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto+Flex:opsz,wght@8..144,100..1000&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik+Doodle+Shadow&family=Rubik+Spray+Paint&family=Sen:wght@400..800&family=Shadows+Into+Light&display=swap');

:root {
    --bg: #ffffff;
    --bg-soft: #f7f7f7;
    --bg-dark: #0e0e0e;
    --card: #ffffff;

    --text: #111111;
    --muted: #777777;

    --accent: #000000;
    --border: rgba(0,0,0,.08);
    --glass: rgba(255,255,255,.6);

    --radius: 20px;
    --shadow: 0 12px 40px rgba(0,0,0,.08);

    --font-head: 'Poppins', sans-serif;

    --accent1: #fefefe;
    --accent2: #121212;
}

body.dark {
    --bg: #0e0e0e;
    --bg-soft: #141414;
    --bg1: #0e0e0e;
    --bg2: #141414;
    --card: #1a1a1a;
    --text-color: #fff;
    --muted: #bdbdbd;
    --accent: #ffffff;
    --border: rgba(255,255,255,.08);
    --glass-border: rgba(255,255,255,0.08);
    background: linear-gradient(180deg, #0e0e0e 60%, #141414 100%);
}

body.dark .shop_section,
body.dark header,
body.dark nav {
    background: #0e0e0e;
}

body.dark .fa-regular,
body.dark .fa-solid,
body.dark .shop_section,
body.dark .card_body,
body.dark .collection,
body.dark .contact,
body.dark .about,
body.dark .hamburger span,
body.dark a {
    color: #fff;
}

body.dark .btn.collection,
body.dark .card_body,
body.dark .contact_info,
body.dark .nav_link,
body.dark .dropdown_menu a,
body.dark .dropdown a {
    color: var(--text);
}


* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: linear-gradient(180deg,#fff 60%, #f7f7f7 100%);
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    color: var(--text);
    line-height: 1.5;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
}


h1, h2, h3, h4 {
    font-weight: 500;
    font-family: var(--font-head);
}

a, p {
    font-family: var(--font-para);
}

em {
    font-size: small;
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    box-shadow: var(--shadow);
    background: #fff;
    margin-bottom: 2rem;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.scrolled {
    background: transparent;
    box-shadow: 0 10px 40px rgba(0,0,0,.12);
    backdrop-filter: blur(8px);
}

header a i {
    text-decoration: none;
    font-size: 18px;
    color: #000000;
    transition: all .3s ease;
}

header a i:hover {
    color: #760707;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0;
}

.brand h2 {
    font-size: 28px;
    font-weight: 600;
    color: #760707;
}

.brand img {
    width: 99px;
    height: auto;
    object-fit: cover;
}

.terms {
    padding: 100px 20px 60px;
    background: #fff;
}

.terms .container {
    max-width: 900px;
    margin: auto;
}

.terms h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.terms .updated {
    font-size: 0.85rem;
    opacity: 0.7;
    margin-bottom: 30px;
}

.terms h2 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 10px;
}

.terms p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.85;
}


.footer {
    background: #111;
    color: #eee;
    padding: 60px 20px 20px;
}

.footer_container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
}

.footer h3 {
    font-size: 2rem;
    font-weight: 600;
    color: red;
    margin-bottom: 15px;
}

.footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #760707; 
}

.footer_socials {
    margin-top: 15px;
    display: flex;
    gap: 15px;
}

.footer_socials a {
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.footer_socials a:hover {
    transform: translateY(-3px);
    color: #e63946;
}

.footer_bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #aaa;
}