* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: #f8f9fa;
}
.header-top {
  background-color: #2d2d2d;
  color: white;
  font-size: 11px;
  padding: 8px 0;
  text-align: center;
}
.header-container-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}
.header-top span {
  margin: 0 15px;
  opacity: 0.9;
}
.topRight .top-link {
  color: #fff;
  text-decoration: none;
  margin-left: 15px;
  transition: color 0.3s;
}
.topRight .top-link:hover {
  color: #cfae70;
}
.header-container-top {
  flex-direction: row-reverse;
}
.main-header {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  height: 80px;
  justify-content: space-between;
}
.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 36px;
}
.logo-main {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #8b0000;
}
.logo-signature {
  font-family: "Great Vibes", cursive;
  font-size: 50px;
  color: #cfae70;
  margin-top: -10px;
}
.search-bar {
  flex: 1;
  max-width: 600px;
  position: relative;
  margin: 0 30px;
}
.search-input {
  width: 100%;
  padding: 12px 45px 12px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.search-input:focus {
  border-color: #2d2d2d;
}
.search-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.action-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f8f9fa;
  color: #2d2d2d;
  text-decoration: none;
  transition: background-color 0.3s;
  position: relative;
}
.action-icon:hover {
  background-color: #e9ecef;
}
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #28a745;
  color: white;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav {
  margin-top: 5px;
  border-top: 1px solid #e5e5e5;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
}
.nav-item {
  position: static;
}
.nav-link {
  display: block;
  padding: 18px 20px;
  color: #2d2d2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.3s;
  cursor: pointer;
}
.nav-link:hover {
  color: #007bff;
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1200px;
  background-color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
}
.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-content {
  padding: 25px;
  display: flex;
  gap: 40px;
}
.dropdown-category {
  margin-bottom: 20px;
}
.dropdown-category:last-child {
  margin-bottom: 0;
}
.category-title {
  font-weight: 600;
  color: #2d2d2d;
  margin-bottom: 8px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.category-links {
  list-style: none;
}
.category-links li {
  margin-bottom: 4px;
}
.category-links a {
  color: #666;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.3s;
  display: block;
  padding: 2px 0;
}
.category-links a:hover {
  color: #007bff;
}
.extras-nav {
  margin-left: auto;
  display: flex;
  gap: 25px;
}
.extras-nav a {
  color: #007bff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s;
}
.extras-nav a:hover {
  color: #0056b3;
}

/* HERO SECTION STYLES */
.hero-section {
  position: relative;
  width: 100%;
  height: 500px; /* adjust height as needed */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* black filter, adjust opacity */
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start; /* or center if you want */
  padding-left: 20px; /* adjust */
}

.hero-title {
  color: white;
  font-size: 30px;
  font-weight: 600; /* adjust */
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-button {
  display: inline-block;
  padding: 12px 30px;
  background-color: transparent; /* white */
  color: #fff; /* text color, maybe black or dark depending on desired contrast */
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  border: 2px solid white;
  border-radius: 2px;
}

.hero-button:hover {
  opacity: 0.7;
}
.hero-text {
  color: white;
  font-size: 18px;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Category section */
.category-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.category-title {
  font-size: 28px;
  margin-bottom: 25px;
  color: #2d2d2d;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
}

/* Product card */
.product-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.product-image {
  position: relative;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  display: block;
}

/* Wishlist & Cart buttons */
.wishlist-btn,
.cart-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s;
}

.wishlist-btn {
  top: 10px;
  right: 10px;
}

.cart-btn {
  bottom: 10px;
  right: 10px;
}

.wishlist-btn:hover,
.cart-btn:hover {
  background: #f0f0f0;
}

.wishlist-panel {
  position: fixed;
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1002;
  display: flex;
  flex-direction: column;
}
.wishlist-panel.open {
  right: 0;
}
.wishlist-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 1001;
}
.wishlist-overlay.show {
  display: block;
}
.wishlist-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.wishlist-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.wishlist-item-name {
  font-size: 16px;
  font-weight: 500;
}

.wishlist-item-price {
  font-size: 15px;
  color: #888;
}

.remove-wishlist-item {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  color: #888;
  margin-left: 10px;
}

.wishlist-item img {
  width: 55px;
  height: 55px;
  margin-right: 15px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.wishlist-badge {
  background: hotpink;
  color: white;
  font-size: 8px;
  padding: 4px 8px;
  border-radius: 50%;
  position: absolute;
  top: -5px;
  right: -10px;
}

.product-info {
  padding: 15px;
}

.product-name {
  font-size: 18px;
  margin-bottom: 8px;
  color: #2d2d2d;
}

.product-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 12px;
  line-height: 1.4;
}

.product-price {
  font-size: 16px;
  font-weight: bold;
  color: #8b0000;
}

/* Diagonal corner badge */
.badge {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 30px;
  background: #e60023;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  line-height: 30px;
  text-transform: uppercase;
  transform: rotate(-45deg) translate(-45px, +15px);
  transform-origin: 0 0;
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.badge.sale {
  background: #28a745;
}

.badge.hot {
  background: #ff4500;
}

.badge.new {
  background: #007bff;
}

/*about*/
.about-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.55); /* dark filter */
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.about-content {
  color: #fff;
  max-width: 900px;
  text-align: center;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.about-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
}

/*cards*/
.two-cards-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 60px 20px;
  background: #f7f7f7;
}

.card-link-wrapper {
  display: block;
  width: 450px; /* same as .card width */
  height: 600px; /* same as .card height */
  text-decoration: none; /* remove underline */
  color: inherit; /* inherit text color */
  position: relative;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}

.card-link-wrapper:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

.card {
  position: relative;
  width: 450px;
  height: 600px;
  background: url("products/knifeset2.jpg") no-repeat center/cover;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.card2 {
  position: relative;
  width: 450px;
  height: 600px;
  background: url("products/pans2.jpg") no-repeat center/cover;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.card-overlay {
  background: rgba(0, 0, 0, 0.4); /* dark filter */
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
  width: 100%;
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  text-transform: uppercase;
}

.card-bottom {
  display: flex;
  align-items: flex-end;
}

.card-link-text {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.card-link-wrapper:hover .card-link-text {
  color: #ddd;
}

/*features*/

.features-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  padding: 60px 20px;
  background: #f7f7f7;
  text-align: center;
}

.feature {
  flex: 1;
  max-width: 300px;
}

.feature-icon {
  font-size: 40px;
  color: #cfae70; /* gold accent */
  margin-bottom: 15px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-text {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* FOOTER */
.footer {
  background-color: #2d2d2d;
  color: #ccc;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-logo {
  font-size: 24px;
  color: #cfae70; /* gold accent */
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.footer-socials {
  margin-top: 15px;
}

.footer-socials a {
  color: #ccc;
  margin-right: 12px;
  font-size: 16px;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #cfae70;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
}

.newsletter-form button {
  padding: 10px 20px;
  border: none;
  background-color: #cfae70;
  color: #2d2d2d;
  font-weight: 600;
  border-radius: 0 3px 3px 0;
  cursor: pointer;
  transition: opacity 0.3s;
}

.newsletter-form button:hover {
  opacity: 0.8;
}

/* Contact inside footer */
.footer-contact {
  margin-top: 15px;
}

.footer-contact p {
  margin: 6px 0;
  font-size: 13px;
}
.footer-contact i {
  color: #cfae70;
  margin-right: 8px;
}

/* Bottom strip */
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #444;
  text-align: center;
  font-size: 13px;
  color: #999;
}

/* Dropdown arrows (hidden on desktop) */
.dropdown-arrow {
  display: none;
  margin-left: 5px;
  font-size: 12px;
}

/* FIX DROPDOWN POSITIONING */
.dropdown {
  position: absolute;
  top: 100%;
  left: 19%;
  transform: translateX(0) translateY(10px);
  width: 100%;
  max-width: 1200px;
  background-color: white;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1001;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) translateY(0);
}

.dropdown-content {
  padding: 25px;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.product-grid a {
  text-decoration: none;
  color: inherit;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.filter-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-label {
  font-size: 14px;
  color: #555;
  font-weight: 500;
}

.filter-select {
  padding: 8px 12px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-select:hover {
  border-color: #8b0000;
}

.filter-select:focus {
  outline: none;
  border-color: #cfae70;
  box-shadow: 0 0 0 3px rgba(207, 174, 112, 0.3);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}
.mobile-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* CART PANEL */
.cart-panel {
  position: fixed;
  top: 0;
  right: -400px; /* hidden off screen */
  width: 350px;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  z-index: 2000;
  transition: right 0.3s ease;
}

.cart-panel.open {
  right: 0;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.cart-header h2 {
  font-size: 18px;
}

.close-cart {
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.cart-item img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  object-fit: cover;
  border: 1px solid #ddd;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-size: 14px;
  font-weight: 500;
}

.cart-item-price {
  font-size: 13px;
  color: #888;
}

.cart-footer {
  border-top: 1px solid #eee;
  padding: 15px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.cart-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.continue-btn,
.checkout-btn {
  flex: 1;
  padding: 10px;
  font-size: 14px;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}

.continue-btn {
  background: #f1f1f1;
}

.checkout-btn {
  background: #007bff;
  color: white;
}

.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  z-index: 1500;
  transition: opacity 0.3s ease;
}

.cart-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

