@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
   --chocolate: #2c1810;
   --gold: #d4af37;
   --white: #ffffff;
   --gradient-bg: linear-gradient(135deg, #f5f3f0 0%, #ede7df 100%);
   --border: 0.1rem solid #e8e8e8;
   --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.05);
}

* {
   font-family: 'Poppins', sans-serif;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: none;
   border: none;
   text-decoration: none;
}

*::selection {
   background-color: var(--gold);
   color: var(--chocolate);
}

html {
   font-size: 62.5%;
   overflow-x: hidden;
   scroll-behavior: smooth;
}

body {
   background: var(--gradient-bg);
   color: var(--chocolate);
}

::-webkit-scrollbar {
   height: 0.5rem;
   width: 1rem;
}

::-webkit-scrollbar-track {
   background: var(--gradient-bg);
}

::-webkit-scrollbar-thumb {
   background-color: var(--gold);
   border-radius: 1rem;
}

section {
   margin: 0 auto;
   max-width: 1200px;
   padding: 3rem 2rem;
}

.title {
   text-align: center;
   margin-bottom: 3rem;
   font-size: 3.5rem;
   color: var(--chocolate);
   text-transform: uppercase;
   letter-spacing: 0.1rem;
   font-weight: 700;
}

.title::after {
   content: '';
   display: block;
   width: 6rem;
   height: 0.3rem;
   background: var(--gold);
   margin: 1rem auto 0;
}

/* Header Styles */
.header {
   position: sticky;
   top: 0;
   left: 0;
   right: 0;
   z-index: 1000;
   background: linear-gradient(135deg, var(--chocolate) 0%, #1a0f0a 100%);
   box-shadow: var(--shadow-light);
   border-bottom: 0.1rem solid var(--gold);
}

.header .flex {
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   max-width: 1200px;
   margin: 0 auto;
   padding: 1.5rem 2rem;
}

.header .flex .logo {
   font-size: 2.2rem;
   color: var(--gold);
   font-weight: 700;
   letter-spacing: 0.1rem;
}

.header .flex .navbar {
   display: flex;
   gap: 3rem;
}

.header .flex .navbar a {
   font-size: 1.5rem;
   color: var(--white);
   transition: all 0.3s ease;
   font-weight: 500;
   display: flex;
   align-items: center;
}

.header .flex .navbar a i {
   margin-right: 0.8rem;
   color: var(--gold);
   font-size: 1.6rem;
}

.header .flex .navbar a:hover {
   color: var(--gold);
   text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.header .flex .icons {
   display: flex;
   gap: 2rem;
}

.header .flex .icons > * {
   font-size: 2rem;
   color: var(--white);
   cursor: pointer;
   transition: all 0.3s ease;
   position: relative;
}

.header .flex .icons > *:hover {
   color: var(--gold);
   transform: scale(1.1);
}

.header .flex .icons span {
   font-size: 1.2rem;
   position: absolute;
   top: -0.5rem;
   right: -0.5rem;
   background: var(--gold);
   color: var(--chocolate);
   padding: 0.2rem 0.5rem;
   border-radius: 50%;
   font-weight: 600;
}

#menu-btn {
   display: none;
}

.header .flex .profile {
   background-color: var(--white);
   border: var(--border);
   padding: 2rem;
   text-align: center;
   position: absolute;
   top: 120%;
   right: 2rem;
   width: 28rem;
   display: none;
   animation: slideDown 0.3s ease;
   border-radius: 0.8rem;
   box-shadow: var(--shadow);
}

.header .flex .profile.active {
   display: inline-block;
}

@keyframes slideDown {
   from {
      opacity: 0;
      transform: translateY(-1rem);
   }
   to {
      opacity: 1;
      transform: translateY(0);
   }
}

.header .flex .profile .name {
   font-size: 1.8rem;
   color: var(--chocolate);
   font-weight: 600;
   margin-bottom: 1rem;
}

.header .flex .profile .flex {
   display: flex;
   gap: 1rem;
   flex-wrap: wrap;
   justify-content: center;
}

.header .flex .profile .account {
   margin-top: 1.5rem;
   font-size: 1.4rem;
   color: var(--chocolate);
}

.header .flex .profile .account a {
   color: var(--chocolate);
   font-weight: 600;
}

.header .flex .profile .account a:hover {
   color: var(--gold);
   text-decoration: underline;
}

/* Buttons */
.btn,
.delete-btn {
   display: inline-block;
   font-size: 1.3rem;
   padding: 0.9rem 2.2rem;
   margin: 0.5rem;
   cursor: pointer;
   text-transform: capitalize;
   transition: all 0.3s ease;
   font-weight: 600;
   border-radius: 0.5rem;
   letter-spacing: 0.05rem;
}

.btn {
   background: linear-gradient(135deg, var(--gold) 0%, #c49f2d 100%);
   color: var(--chocolate);
   border: 0.1rem solid var(--gold);
}

.btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.delete-btn {
   background-color: #e74c3c;
   color: var(--white);
   border: 0.1rem solid #e74c3c;
}

.delete-btn:hover {
   background-color: #c0392b;
   transform: translateY(-2px);
}

/* Message */
.message {
   position: sticky;
   top: 0;
   max-width: 1200px;
   margin: 0 auto;
   padding: 1.5rem 2rem;
   display: flex;
   align-items: center;
   gap: 1rem;
   justify-content: space-between;
   background: linear-gradient(135deg, var(--gold) 0%, #c49f2d 100%);
   z-index: 999;
   border-radius: 0.5rem;
   box-shadow: var(--shadow);
}

.message span {
   font-size: 1.6rem;
   color: var(--chocolate);
   font-weight: 500;
}

.message i {
   font-size: 2rem;
   color: #e74c3c;
   cursor: pointer;
   transition: all 0.3s ease;
}

.message i:hover {
   color: var(--black);
   transform: scale(1.2);
}

.empty {
   border: var(--border);
   padding: 2rem;
   text-align: center;
   width: 100%;
   font-size: 1.8rem;
   text-transform: capitalize;
   color: #e74c3c;
   background-color: var(--white);
   border-radius: 0.5rem;
}

/* Hero Section */
.hero {
   background: var(--gradient-bg);
}

.hero .swiper-slide {
   display: flex;
   align-items: center;
   flex-wrap: wrap-reverse;
   gap: 3rem;
   padding: 2rem;
}

.hero .slide .image {
   flex: 1 1 40rem;
}

.hero .slide .image img {
   width: 100%;
   max-height: 25rem;
   object-fit: contain;
   border-radius: 1rem;
}

.hero .slide .content {
   flex: 1 1 40rem;
   text-align: center;
}

.hero .slide .content span {
   font-size: 1.6rem;
   color: var(--chocolate);
   font-weight: 600;
   letter-spacing: 0.1rem;
}

.hero .slide .content h3 {
   margin: 1.5rem 0;
   font-size: 4rem;
   color: var(--chocolate);
   font-weight: 700;
}

.hero .slide .content p {
   font-size: 1.4rem;
   color: var(--dark-gray);
   line-height: 1.8;
   margin-bottom: 2rem;
}

.swiper-pagination-bullet-active {
   background-color: var(--gold);
}

/* Category Section */
.category {
   background-color: var(--white);
}

.category .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
   gap: 2rem;
   align-items: flex-start;
}

.category .box-container .box {
   border: var(--border);
   padding: 2rem;
   text-align: center;
   border-radius: 1rem;
   transition: all 0.3s ease;
   background-color: var(--white);
}

.category .box-container .box:hover {
   background: linear-gradient(135deg, var(--chocolate) 0%, #1a0f0a 100%);
   border-color: var(--gold);
   box-shadow: var(--shadow);
   transform: translateY(-5px);
}

.category .box-container .box img,
.category .box-container .box i {
   width: 100%;
   height: 12rem;
   display: flex;
   align-items: center;
   justify-content: center;
   object-fit: contain;
   margin-bottom: 1rem;
   transition: all 0.3s ease;
}

.category .box-container .box i {
   font-size: 8rem;
   color: var(--chocolate);
}

.category .box-container .box:hover img {
   filter: brightness(0.9) invert(0.5);
}

.category .box-container .box:hover i {
   color: var(--gold);
   transform: scale(1.1);
}

.category .box-container .box h3 {
   font-size: 1.8rem;
   margin-top: 1.5rem;
   color: var(--chocolate);
   text-transform: capitalize;
   font-weight: 600;
}

.category .box-container .box:hover h3 {
   color: var(--gold);
}

/* Products Section */
.products {
   background-color: var(--white);
}

.products .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, 26rem);
   justify-content: center;
   align-items: flex-start;
   gap: 2rem;
}

.products .box-container .box {
   border: var(--border);
   padding: 1.5rem;
   position: relative;
   overflow: hidden;
   border-radius: 1rem;
   transition: all 0.3s ease;
   background-color: var(--white);
}

.products .box-container .box:hover {
   box-shadow: var(--shadow);
   border-color: var(--accent);
   transform: translateY(-5px);
}

.products .box-container .box img {
   height: 22rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
   border-radius: 0.5rem;
}

.products .box-container .box .fa-eye,
.products .box-container .box .fa-shopping-cart {
   position: absolute;
   top: 1.5rem;
   height: 4rem;
   width: 4rem;
   line-height: 4rem;
   border: 0.1rem solid var(--gold);
   background: linear-gradient(135deg, var(--gold) 0%, #c49f2d 100%);
   cursor: pointer;
   font-size: 1.6rem;
   color: var(--chocolate);
   transition: all 0.3s ease;
   text-align: center;
   border-radius: 50%;
}

.products .box-container .box .fa-eye:hover,
.products .box-container .box .fa-shopping-cart:hover {
   background-color: var(--chocolate);
   color: var(--white);
   transform: scale(1.1);
}

.products .box-container .box .fa-eye {
   left: -5rem;
}

.products .box-container .box .fa-shopping-cart {
   right: -5rem;
}

.products .box-container .box:hover .fa-eye {
   left: 1.5rem;
}

.products .box-container .box:hover .fa-shopping-cart {
   right: 1.5rem;
}

.products .box-container .box .cat {
   font-size: 1.3rem;
   color: var(--chocolate);
   font-weight: 500;
   display: block;
   margin-bottom: 0.5rem;
}

.products .box-container .box .cat:hover {
   color: var(--gold);
   text-decoration: underline;
}

.products .box-container .box .name {
   font-size: 1.8rem;
   color: var(--chocolate);
   margin: 1rem 0;
   font-weight: 600;
}

.products .box-container .box .flex {
   display: flex;
   align-items: center;
   gap: 1.5rem;
   margin-top: 1.5rem;
}

.products .box-container .box .flex .price {
   margin-right: auto;
   font-size: 2rem;
   color: var(--gold);
   font-weight: 700;
}

.products .box-container .box .flex .price span {
   font-size: 1.4rem;
}

.products .box-container .box .flex .qty {
   padding: 0.5rem 1rem;
   border: var(--border);
   font-size: 1.4rem;
   color: var(--black);
   border-radius: 0.3rem;
   width: 6rem;
}

.products .more-btn {
   margin-top: 2rem;
   text-align: center;
}

/* Heading */
.heading {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 1rem;
   flex-flow: column;
   background: linear-gradient(135deg, var(--chocolate) 0%, #1a0f0a 100%);
   min-height: 20rem;
   border-bottom: 0.3rem solid var(--gold);
}

.heading h3 {
   font-size: 3.5rem;
   color: var(--white);
   text-transform: capitalize;
   font-weight: 700;
}

.heading p {
   font-size: 1.6rem;
   color: var(--white);
}

.heading p a {
   color: var(--gold);
   font-weight: 600;
}

.heading p a:hover {
   text-decoration: underline;
}

/* Contact Section */
.contact .row {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 2rem;
}

.contact .row .image {
   flex: 1 1 40rem;
}

.contact .row .image img {
   width: 100%;
   border-radius: 1rem;
   box-shadow: var(--shadow);
}

.contact .row form {
   border: var(--border);
   flex: 1 1 40rem;
   padding: 2.5rem;
   text-align: center;
   border-radius: 1rem;
   background-color: var(--white);
   box-shadow: var(--shadow-light);
}

.contact .row form h3 {
   font-size: 2.2rem;
   color: var(--black);
   margin-bottom: 1.5rem;
   text-transform: capitalize;
   font-weight: 700;
}

.contact .row form .box {
   margin: 1rem 0;
   font-size: 1.4rem;
   color: var(--black);
   border: var(--border);
   padding: 1rem;
   width: 100%;
   border-radius: 0.5rem;
   transition: all 0.3s ease;
}

.contact .row form .box:focus {
   border-color: var(--accent);
   box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact .row form textarea {
   height: 15rem;
   resize: none;
}

/* Footer */
.footer {
   background: linear-gradient(135deg, var(--chocolate) 0%, #1a0f0a 100%);
   color: var(--white);
}

.credit {
   padding: 2rem;
   text-align: center;
   background-color: rgba(0, 0, 0, 0.3);
   color: var(--white);
   font-size: 1.4rem;
   letter-spacing: 0.05rem;
   border-top: 0.1rem solid var(--gold);
}

.credit span {
   color: var(--gold);
   font-weight: 600;
}

/* Loader */
.loader {
   position: fixed;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   z-index: 1000000;
   background-color: var(--white);
   display: flex;
   align-items: center;
   justify-content: center;
}

.loader img {
   height: 10rem;
   animation: spin 1s linear infinite;
}

@keyframes spin {
   from {
      transform: rotate(0deg);
   }
   to {
      transform: rotate(360deg);
   }
}

/* Form Container */
.form-container form {
   border: var(--border);
   margin: 0 auto;
   max-width: 45rem;
   padding: 2.5rem;
   text-align: center;
   border-radius: 1rem;
   background-color: var(--white);
   box-shadow: var(--shadow-light);
}

.form-container form h3 {
   font-size: 2.2rem;
   color: var(--black);
   text-transform: uppercase;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.form-container form .box {
   margin: 1rem 0;
   width: 100%;
   border: var(--border);
   padding: 1rem;
   font-size: 1.4rem;
   color: var(--black);
   border-radius: 0.5rem;
   transition: all 0.3s ease;
}

.form-container form .box:focus {
   border-color: var(--accent);
   box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-container form p {
   margin-top: 1.5rem;
   font-size: 1.4rem;
   color: var(--dark-gray);
}

.form-container form p a {
   color: var(--primary);
   font-weight: 600;
}

.form-container form p a:hover {
   color: var(--accent);
   text-decoration: underline;
}

/* Cart Section */
.products .cart-total {
   display: flex;
   align-items: center;
   gap: 2rem;
   flex-wrap: wrap;
   justify-content: space-between;
   margin-top: 2rem;
   border: var(--border);
   padding: 1.5rem;
   border-radius: 1rem;
   background-color: var(--white);
   box-shadow: var(--shadow-light);
}

.products .cart-total p {
   font-size: 1.8rem;
   color: var(--dark-gray);
}

.products .cart-total p span {
   color: var(--accent);
   font-weight: 700;
}

.products .cart-total .btn {
   margin-top: 0;
}

/* Orders Section */
.orders .box-container {
   display: flex;
   flex-wrap: wrap;
   gap: 1.5rem;
   align-items: flex-start;
}

.orders .box-container .box {
   padding: 1.5rem 2rem;
   border: var(--border);
   flex: 1 1 40rem;
   border-radius: 1rem;
   background-color: var(--white);
   box-shadow: var(--shadow-light);
}

.orders .box-container .box p {
   line-height: 1.8;
   margin: 1rem 0;
   font-size: 1.5rem;
   color: var(--dark-gray);
}

.orders .box-container .box p span {
   color: var(--black);
   font-weight: 600;
}

/* Checkout */
.checkout form {
   max-width: 50rem;
   margin: 0 auto;
   border: var(--border);
   padding: 2.5rem;
   border-radius: 1rem;
   background-color: var(--white);
   box-shadow: var(--shadow);
}

.checkout form h3 {
   font-size: 2rem;
   text-transform: capitalize;
   padding: 1.5rem 0;
   color: var(--black);
   font-weight: 700;
}

.checkout form .cart-items {
   background: linear-gradient(135deg, var(--secondary) 0%, #1a0f0a 100%);
   padding: 1.5rem;
   margin: 1.5rem 0;
   border-radius: 0.5rem;
}

.checkout form .cart-items h3 {
   color: #1f110c;
}

.checkout form .cart-items p {
   display: flex;
   align-items: center;
   gap: 1rem;
   justify-content: space-between;
   margin: 1rem 0;
   line-height: 1.5;
   font-size: 1.5rem;
}

.checkout form .cart-items p .name {
   color: var(--light-gray);
}

.checkout form .cart-items p .price {
   color: var(--accent);
   font-weight: 700;
}

/* Search Form */
.search-form form {
   display: flex;
   gap: 1rem;
}

.search-form form .box {
   width: 100%;
   border: var(--border);
   padding: 1rem;
   font-size: 1.4rem;
   color: var(--black);
   border-radius: 0.5rem;
}

.search-form form .fa-search {
   width: 5rem;
   background: linear-gradient(135deg, var(--gold) 0%, #c49f2d 100%);
   color: var(--chocolate);
   cursor: pointer;
   font-size: 1.8rem;
   border-radius: 0.5rem;
   transition: all 0.3s ease;
}

.search-form form .fa-search:hover {
   background-color: var(--chocolate);
   color: var(--white);
}

/* Quick View */
.quick-view form {
   max-width: 40rem;
   padding: 2rem;
   border: var(--border);
   position: relative;
   margin: 0 auto;
   border-radius: 1rem;
   background-color: var(--white);
   box-shadow: var(--shadow-light);
}

.quick-view form img {
   height: 25rem;
   width: 100%;
   object-fit: contain;
   margin-bottom: 1rem;
   border-radius: 0.5rem;
}

.quick-view form .name {
   font-size: 2rem;
   margin: 1rem 0;
   font-weight: 600;
}

.quick-view form .flex {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1.5rem;
   margin: 1.5rem 0;
}

.quick-view form .flex .price {
   font-size: 2.2rem;
   color: var(--accent);
   font-weight: 700;
}

.quick-view form .flex .qty {
   border: var(--border);
   padding: 0.7rem;
   font-size: 1.4rem;
   color: var(--black);
   border-radius: 0.3rem;
   width: 6rem;
}

.quick-view form .cart-btn {
   width: 100%;
   padding: 1rem 3rem;
   text-align: center;
   border: var(--border);
   font-size: 1.6rem;
   color: var(--black);
   cursor: pointer;
   text-transform: capitalize;
   background: none;
   margin-top: 1.5rem;
   border-radius: 0.5rem;
   transition: all 0.3s ease;
   font-weight: 600;
}

.quick-view form .cart-btn:hover {
   background: linear-gradient(135deg, var(--accent) 0%, #c49f2d 100%);
   color: var(--black);
   transform: translateY(-2px);
}

/* About Section */
.about .row {
   display: flex;
   align-items: center;
   flex-wrap: wrap;
   gap: 2rem;
}

.about .row .image {
   flex: 1 1 40rem;
}

.about .row .image img {
   width: 100%;
   border-radius: 1rem;
   box-shadow: var(--shadow);
}

.about .row .content {
   flex: 1 1 40rem;
   text-align: center;
}

.about .row .content h3 {
   font-size: 2.5rem;
   color: var(--black);
   text-transform: capitalize;
   margin-bottom: 1.5rem;
   font-weight: 700;
}

.about .row .content p {
   padding: 1rem 0;
   line-height: 1.8;
   font-size: 1.5rem;
   color: var(--dark-gray);
}

/* Responsive */
@media (max-width: 991px) {
   html {
      font-size: 55%;
   }
}

@media (max-width: 768px){

   #menu-btn{
      display: inline-block;
   }

   .header .flex{
      padding: 1.2rem 1.5rem;
   }

   .header .flex .logo{
      font-size: 1.8rem;
   }

   .header .flex .navbar{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;

      display: flex;
      flex-direction: column;
      gap: 0;

      background: linear-gradient(135deg, #2c1810 0%, #1a0f0a 100%);
      border-top: .1rem solid rgba(255,255,255,.1);

      max-height: 0;
      overflow: hidden;

      transition: all .4s ease;
      z-index: 999;
   }

   .header .flex .navbar.active{
      max-height: 60rem;
      padding: 1rem 0;
   }

   .header .flex .navbar a{
      display: flex;
      align-items: center;
      width: 100%;
      margin: 0;
      padding: 1.5rem 2rem;
      border-bottom: .1rem solid rgba(255,255,255,.05);
   }

   .header .flex .navbar a:last-child{
      border-bottom: none;
   }

   .header .flex .icons{
      gap: 1.5rem;
   }

   .header .flex .profile{
      width: 90%;
      max-width: 30rem;
      right: 5%;
   }

   .products .box-container{
      grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
   }
}

@media (max-width: 450px){

   html{
      font-size: 50%;
   }

   .title{
      font-size: 2.5rem;
   }

   .header .flex{
      padding: 1rem;
   }

   .header .flex .logo{
      font-size: 1.6rem;
   }

   .header .flex .icons > *{
      font-size: 1.8rem;
   }

   .header .flex .profile{
      width: calc(100% - 2rem);
      right: 1rem;
   }

   .hero .slide .content h3{
      font-size: 2.5rem;
   }

   .products .box-container{
      grid-template-columns: 1fr;
   }

   .heading h3{
      font-size: 2.5rem;
   }

   .contact .row{
      flex-direction: column;
   }
}

/* Video Section Styles */
.video-container {
   padding: 5rem 2rem;
   background-color: #fff;
}

.video-container .video-box {
   position: relative;
   width: 100%;
   height: 50rem;
   border-radius: .5rem;
   overflow: hidden;
   box-shadow: var(--box-shadow);
   border: var(--border);
}

.video-container .video-box video {
   width: 100%;
   height: 100%;
   object-fit: cover;
}

.video-container .video-box .content {
   position: absolute;
   top: 50%; left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   background-color: rgba(0,0,0,.6);
   padding: 4rem 3rem;
   border-radius: .5rem;
   width: 90%;
   max-width: 65rem;
}

.video-container .video-box .content h3 {
   font-size: 4.5rem;
   color: var(--gold);
   text-transform: uppercase;
   font-weight: 700;
   margin-bottom: 1rem;
}

.video-container .video-box .content p {
   font-size: 2rem;
   color: var(--white);
   line-height: 1.5;
}

@media (max-width:768px) {
   .video-container .video-box {
      height: 35rem;
   }
   .video-container .video-box .content h3 {
      font-size: 3rem;
   }
   .video-container .video-box .content p {
      font-size: 1.6rem;
   }
}
