 /* HERO - More creative & immersive */

 .hero-full {
     height: 100vh;
     min-height: 800px;
     background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1558769132-cb1aea458c5e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1974&q=80') center/cover no-repeat fixed;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     position: relative;
     margin-top: 85px;
 }

 .hero-content {
     max-width: 900px;
     padding: 2rem;
     animation: fadeInUp 1.2s ease-out;
 }

 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(40px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 .hero-content h1 {
     font-size: 5.5rem;
     font-weight: 800;
     letter-spacing: 5px;
     line-height: 1;
     margin-bottom: 1.2rem;
 }

 .hero-content h1 span {
     color: var(--primary);
 }

 .hero-content p {
     font-size: 1.4rem;
     color: var(--muted);
     margin: 1.8rem 0 2.5rem;
     max-width: 620px;
     margin-left: auto;
     margin-right: auto;
 }

 .hero-btn {
     padding: 1rem 3rem;
     border-radius: 50px;
     background: var(--primary);
     color: #000;
     font-size: 1.2rem;
     font-weight: 700;
     transition: all 0.4s ease;
     box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
 }

 .hero-btn:hover {
     transform: scale(1.08) translateY(-4px);
     box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
 }



 /* CATEGORIES - More creative cards */
 .categories {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 2.5rem;
 }

 .card {
     position: relative;
     overflow: hidden;
     border-radius: 24px;
     background: var(--card);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
     transition: all 0.5s ease;
 }

 .card:hover {
     transform: translateY(-15px) scale(1.03);
 }

 .card img {
     width: 100%;
     height: 420px;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 .card:hover img {
     transform: scale(1.12);
 }

 .overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
     display: flex;
     align-items: flex-end;
     justify-content: center;
     padding-bottom: 3rem;
     font-size: 2.8rem;
     font-weight: 700;
     color: white;
     text-shadow: 0 4px 12px rgba(0, 0, 0, 0.7);
     transition: all 0.4s;
 }

 .card:hover .overlay {
     background: linear-gradient(to top, rgba(212, 175, 55, 0.4), transparent 60%);
 }

 .products {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 2.5rem;
 }

 .product {
     background: var(--card);
     border-radius: 20px;
     padding: 1.2rem;
     text-align: center;
     transition: all 0.4s ease;
     border: 1px solid rgba(212, 175, 55, 0.1);
 }

 .product:hover {
     transform: translateY(-12px);
     border-color: var(--primary);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
 }

 .product img {
     width: 100%;
     height: 320px;
     object-fit: cover;
     border-radius: 16px;
     margin-bottom: 1rem;
 }

 .product h4 {
     font-size: 1.3rem;
     margin: 0.8rem 0 0.4rem;
 }

 .product span {
     color: var(--primary);
     font-weight: 700;
     font-size: 1.2rem;
 }

 /* CTA */
 .cta {
     background: linear-gradient(135deg, #111114, #1e1e24);
     border-radius: 30px;
     text-align: center;
     padding: 100px 4rem;
     margin: 0 5rem;
 }

 .cta h2 {
     font-size: 3.8rem;
     margin-bottom: 1.5rem;
 }

 .cta p {
     max-width: 700px;
     margin: 0 auto 2.5rem;
     color: var(--muted);
     font-size: 1.3rem;
 }

 @media (max-width: 480px) {
     .hero-full {
         min-height: 70vh;
         background-attachment: scroll;
     }

     .hero-content h1 {
         font-size: 2.6rem;
         line-height: 1.05;
         letter-spacing: 2px;
     }

     .hero-content p {
         font-size: 1rem;
         margin: 1.2rem 0;
     }

     .hero-btn {
         padding: 0.9rem 2.2rem;
         font-size: 1rem;
     }
 }

 @media (max-width: 1024px) {

     .hero-full {
         min-height: 80vh;
     }

     .hero-content h1 {
         font-size: 4.2rem;
     }
 }

 @media (max-width: 900px) {
     section {
         padding: 80px 2.5rem;
     }
 }

 @media (max-width: 600px) {
     .hero-content h1 {
         font-size: 3.2rem;
     }

     .hero-content p {
         font-size: 1.1rem;
     }
 }

 .hero-full {
     height: 100vh;
     height: 100dvh;
 }

 @media (max-width: 600px) {

     header {
         padding: 0;
     }

     .nav-container {
         padding: 1rem 1.25rem;
     }

     .menu-toggle {
         font-size: 1.6rem;
         padding: 0.5rem;
     }

     nav {
         top: 70px;
         padding: 2rem 1.5rem;
     }

     nav a {
         font-size: 1.15rem;
         padding: 1rem 0;
     }

     .nav-btn {
         margin-top: 1.5rem;
         width: 100%;
         text-align: center;
         padding: 1rem;
     }

     .categories,
     .products {
         gap: 1.6rem;
     }

     .card img {
         height: 360px;
     }

     .overlay {
         font-size: 2.2rem;
         padding-bottom: 2.5rem;
     }

     .product img {
         height: 340px;
     }

     .product h4 {
         font-size: 1.15rem;
     }

     .product span {
         font-size: 1.1rem;
     }

     .cta {
         padding: 60px 20px;
         margin: 0 1rem;
         border-radius: 20px;
     }

     .cta h2 {
         font-size: 2.4rem;
     }

     .cta p {
         font-size: 1rem;
     }

 }

 @media (max-width: 820px) and (orientation: landscape) {
     .hero-full {
         min-height: 90vh;
     }

     .hero-content h1 {
         font-size: 3.8rem;
     }
 }

 @media (max-width: 900px) {
     .categories {
         grid-template-columns: repeat(2, 1fr);
     }

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

 @media (min-width: 901px) {

     .categories,
     .products {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 .categories,
 .products {
     display: grid;
     grid-template-columns: 1fr;
     gap: 1.8rem;
 }

 @media (max-width: 480px) {

     .categories,
     .products {
         gap: 1.4rem;
     }

     .card img,
     .product img {
         height: 380px;
         object-fit: cover;
     }
 }

 @media (max-width: 820px) {

     .categories,
     .products {
         grid-template-columns: 1fr;
     }
 }

 @media (min-width: 821px) {

     .categories,
     .products {
         grid-template-columns: repeat(2, 1fr);
         gap: 2.2rem;
     }
 }

 @media (min-width: 1100px) {
     .categories {
         grid-template-columns: repeat(3, 1fr);
     }

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

 }

 @media (max-width: 600px) {

     .categories,
     .products {
         grid-template-columns: 1fr;
         gap: 1.6rem;
     }
 }

 @media (min-width: 601px) and (max-width: 900px) {

     .categories,
     .products {
         grid-template-columns: repeat(2, 1fr);
         gap: 2rem;
     }
 }