@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 a {
    color: #fff;
}

body.dark .btn.collection,
body.dark .card_body,
body.dark .contact_info,
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 {
    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;
}

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

.top_bar {
    background: var(--bg-dark);
    color: #fff;
    font-size: 14px;
    font-weight: 450;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0 -2px;
}

.lang_con {
    margin: 0 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/*
.custom_dropdown {
    position: relative;
    display: inline-block;
}

.dropdown_btn {
    background: none;
    border: none;
    font-family: var(--font-para);
    font-size: 14px;
    cursor: pointer;
    padding: 5px 8px;
    color: var(--text-color);
}

.dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 140px;
    background: #fff;
    border-radius: var(--radius);
    padding: 8px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    z-index: 2000;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.dropdown_menu a {
    padding: 10px 15px;
    display: block;
    color: #111;
    text-decoration: none;
    font-size: 14px;
}

.dropdown_menu a:hover {
    background: #f4f4f4;
}

.custom_dropdown:hover .dropdown_menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}
*/

.new_info {
    margin: 0 20px 0 0;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 26px;
    height: 1px;
    background: #111;
    transition: 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger.open span:nth-child(4) {
    opacity: 0;
}

.hamburger.open span:nth-child(5) {
    transform: rotate(-35deg) translate(5px, -5px);
}


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

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

.brand a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    color: #760707;
}

.nav_ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav_link {
    position: relative;        
    font-size: 15px;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    padding-bottom: 6px;     
}

.nav_link::after {
    content: "";
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
    left: 50%;
    transform: translateX(-50%);
}

.nav_link:hover::after {
    width: 100%;
}

.nav_link:hover {
    color: #000;
}

.nav_link:active {
    color: #3b3b3b;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: #fff;
    padding: 10px 0;
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: none;
    flex-direction: column;
    z-index: 2000;
}

.dropdown a {
    padding: 10px 18px;
    text-decoration: none;
    color: #111;
    font-size: 14px;
    font-family: var(--font-para);
    display: block;
    transition: 0.25s ease;
}

.dropdown a:hover {
    background: #f4f4f4;
}

.nav_item:hover .dropdown {
    display: flex; 
}
.nav_item .dropdown {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease;
}

.nav_item:hover .dropdown {
    opacity: 1;
    transform: translateY(0);
}

.nav_item {
    position: relative;
}

.utility_icons {
    display: flex;
    gap: 10px;
}

.utility_icons .fa-solid,
.utility_icons .fa-regular {
    cursor: pointer;
    color: #000;
}

.cart_icon {
    position: relative;
}

#cart_count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: crimson;
    color: #fff;
    font-size: .7rem;
    padding: 2px 6px;
    border-radius: 50%;
}


.theme-toggle {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: inherit;
}

.shop_section {
    padding: 8rem 1rem;
    background: #fff;
}

.shop_header {
    text-align: center;
    margin-bottom: 3rem;
}

.shop_header h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.shop_header p {
    color: #666;
    font-size: 1rem;
}

.shop_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.shop_card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transition: transform .3s ease, box-shadow .3s ease;
}

.shop_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.card_img {
    position: relative;
    overflow: hidden;
}

.card_img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform .4s ease;
}

.shop_card:hover img {
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #000;
    color: #fff;
    padding: 4px 10px;
    font-size: .75rem;
    text-transform: uppercase;
    border-radius: 20px;
}

.badge.sale {
    background: #dc143c;
}

.card_body {
    padding: 1.2rem;
    text-align: center;
}

.card_body h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: .4rem;
}

.price {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.btn {
    width: 100%;
    padding: .7rem;
    border-radius: var(--radius);
    background: #000;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background .3s ease;
}

.btn.add_to_cart {
    color: #fff;
}

.product_carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pc_viewport {
    overflow: hidden;
    width: 100%;
}

.pc_track {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
}

.pc_card {
    min-width: 250px;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    text-align: center;
    transition: all .4s ease;
}

.pc_card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform .4s ease;
}

.pc_btn {
    background: #000;
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: var(--radius);
}

.pc_card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.card_img {
    position: relative;
    overflow: hidden;
}

.card_img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform .4s ease;
}

.shop_card:hover img {
    transform: scale(1.05);
}


.btn:hover {
    background: #222;
}

.collection {
    padding: 80px 0;
}

.btn.collection {
    text-align: center;
}

.section_title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.section_subtitle {
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.7;
}

.collection_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.collection_card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
}

.collection_image {
    position: relative;
    width: 100%;
    height: 420px;
}

.collection_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: opacity .4s ease, transform .6s ease;
}

.collection_image .hover_img {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.collection_card:hover .hover_img {
    opacity: 1;
}

.collection_card:hover img:first-child {
    opacity: 0;
}

.collection_card:hover img {
    transform: scale(1.05);
}

.collection_info {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(0,0,0,0.75),rgba(0,0,0,0.05));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.collection_info h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
}

.btn.collection {
    align-self: flex-start;
    padding: 10px 18px;
    background: #fff;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--radius);
    transition: all .3s ease;
}

.btn.collection:hover {
    background: #000;
    color: #fff;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal_left {
    transform: translateX(-40px);
}

.reveal_right {
    transform: translateX(40px);
}

.reveal_left.active,
.reveal_right.active {
    transform: translateX(0);
}

.delay_1 { 
    transition-delay: 0.15s;
}
.delay_2 { 
    transition-delay: 0.3s; 
}
.delay_3 { 
    transition-delay: 0.45s; 
}
.delay_4 {
    transition-delay: 0.5s; 
}

.whatsapp_btn {
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 65px;
    height: 65px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform .3s ease, box-shadow .3s ease;
}

.whatsapp_btn:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 35px rgba(0,0,0,0.35);
}

.whatsapp_btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.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;
}


@media (max-width: 1024px) {

  .hero_content h1 {
    font-size: 48px;
  }

  .about_grid {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

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

  .collection_image {
    height: 360px;
  }

  .about_grid {
    padding: 0 50px;
  }

  .contact {
    padding: 50px 60px;
  }

}

@media (max-width: 900px) {

  .nav_ul {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    display: none;
  }

  .nav_ul.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .utility_icons {
    gap: 14px;
  }

  .hero {
    height: 80vh;
  }

  .hero_wrap {
    padding: 60px 20px;
  }

  .hero_content h1 {
    font-size: 42px;
  }

  .shop_grid {
    padding: 0 30px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }

  .collection_grid {
    padding: 0 30px;
  }

  .about_grid {
    padding: 0 50px;
  }

  .contact {
    padding: 50px 60px;
  }

}

@media (max-width: 600px) {

  .top_bar {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding: 8px;
  }

  .lang_con {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .logo img {
    width: 70px;
  }

  .brand a {
    font-size: 16px;
  }

  .hero {
    height: 70vh;
    background-attachment: scroll;
  }

  .hero_content h1 {
    font-size: 32px;
  }

  .hero_btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .card_img img {
    height: 280px;
  }

  .collection_image {
    height: 300px;
  }

  .about_grid {
    padding: 0 55px;
  }

  .about_text h1 {
    font-size: 24px;
  }

  .contact {
    padding: 50px 20px;
  }

  .footer_container {
    text-align: center;
    gap: 25px;
  }

  .footer h3 {
    font-size: 1.5rem;
  }

  .footer_socials {
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .top_bar {
    font-size: 14px;
  }  

  .hero_content h1 {
    font-size: 26px;
  }

  .shop_header h2,
  .section_title {
    font-size: 22px;
  }

  .contact_header h2 {
    font-weight: 600;
    font-size: 20px;
  }

  .btn {
    font-size: 13px;
  }

  .contact_grid {
    padding: 50px 20px;
  }

  .whatsapp_btn {
    width: 55px;
    height: 55px;
    bottom: 55px;
  }
}