/* Fonts */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700&display=swap");

:root {
  --primary: #d4c4b5; /* Pastel Beige/Gold */
  --primary-dark: #bba99a;
  --text-main: #1a1a1a; /* Soft Black */
  --text-light: #666666;
  --bg-light: #f9f9f9; /* Off-white */
  --white: #ffffff;
  --black: #000000;
  --accent: #e0e0e0;

  --font-heading: "Outfit", sans-serif;
  --font-body: "Outfit", sans-serif;

  --container-width: 1920px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--black);
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 40px;
}

.product-grid {
  display: grid !important;
  gap: 30px;
  grid-template-columns: repeat(5, 1fr) !important;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--black);
  color: var(--white);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 2px;
  border: 1px solid var(--black);
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: transparent;
  color: var(--black);
}

.btn-outline {
  background-color: transparent;
  color: var(--black);
  border: 1px solid var(--black);
}

.btn-outline:hover {
  background-color: var(--black);
  color: var(--white);
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--black);
  color: var(--white);
  padding: 8px 20px;
  text-align: center;
  font-size: 0.85rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1001;
}

.announcement-btn {
  background-color: var(--white);
  color: var(--black);
  border: none;
  padding: 4px 15px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: 1px;
  transition: var(--transition);
}

.announcement-btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

/* Header */
header {
  padding: 10px 0;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.nav-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.nav-links a {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  color: var(--text-main);
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: var(--black);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--black);
  font-weight: 700;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--black);
  padding: 5px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 2001;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: var(--transition);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  cursor: pointer;
}

.mobile-menu a {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}

.mobile-menu a.active {
  color: var(--primary-dark);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

/* Footer */
footer {
  background-color: #fff;
  padding: 80px 0 40px;
  margin-top: 100px;
  border-top: 1px solid #f0f0f0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-transform: none;
  letter-spacing: 0;
}

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

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

.footer-col ul li a {
  color: #888;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #000;
}

.footer-bottom {
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  color: #888;
  font-size: 0.9rem;
  text-align: center;
  border: none;
  padding: 0;
}

.payment-logos {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.payment-label {
  display: block;
  font-size: 0.7rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.payment-logos img {
  height: 20px;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  transition: opacity 0.3s;
}

.payment-logos img:hover {
  opacity: 1;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  font-size: 1.1rem;
  color: #888;
}

.footer-social-icons a {
  color: inherit;
  transition: color 0.3s;
}

.footer-social-icons a:hover {
  color: #000;
}

/* Hardness Scale */
.hardness-scale {
  display: flex;
  gap: 5px;
  margin-top: 10px;
}
.scale-point {
  width: 20px;
  height: 8px;
  background: #eee;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Gradient Colors for Active Points */
.scale-point.active:nth-child(1) {
  background-color: #4caf50;
}
.scale-point.active:nth-child(2) {
  background-color: #66bb6a;
}
.scale-point.active:nth-child(3) {
  background-color: #81c784;
}
.scale-point.active:nth-child(4) {
  background-color: #aed581;
}
.scale-point.active:nth-child(5) {
  background-color: #d4e157;
}
.scale-point.active:nth-child(6) {
  background-color: #ffee58;
}
.scale-point.active:nth-child(7) {
  background-color: #ffca28;
}
.scale-point.active:nth-child(8) {
  background-color: #ffa726;
}
.scale-point.active:nth-child(9) {
  background-color: #ff7043;
}
.scale-point.active:nth-child(10) {
  background-color: #d32f2f;
}

/* Mobile Responsive */

/* Header Cart Dropdown */
.cart-wrapper:hover .cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cart-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: #ffffff;
  border: 1px solid #eee;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 8px;
  margin-top: 15px;
}

.cart-icon {
  position: relative;
  display: inline-block;
}

.cart-wrapper {
  display: flex;
  align-items: center;
}

.cart-icon .badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: #000;
  color: #fff;
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 50%;
  font-weight: 700;
}

/* Newsletter Popup */
#newsletter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#newsletter-popup {
  background: #fff;
  width: 90%;
  max-width: 900px;
  max-height: 90vh; /* Ensure it fits on viewport */
  position: relative;
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border-radius: 8px; /* Added for consistency */
}

#newsletter-popup .popup-image {
  flex: 1;
  background: url("../images/pop.png") center/cover no-repeat;
  min-height: 400px;
}

#newsletter-popup .popup-content {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow-y: auto; /* Allow content to scroll if too high */
}

#newsletter-popup .close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 2rem; /* Slightly larger for touch */
  cursor: pointer;
  color: #333;
  z-index: 20;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

#newsletter-popup h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

#newsletter-popup p {
  color: #666;
  margin-bottom: 30px;
}

#newsletter-popup input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
  font-family: inherit;
}

#newsletter-popup .subscribe-btn {
  width: 100%;
  padding: 15px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}

#newsletter-popup .subscribe-btn:hover {
  background: #333;
}

#newsletter-popup .message {
  margin-top: 15px;
  font-size: 0.9rem;
}

/* User Dropdown */
.user-wrapper {
  display: flex;
  align-items: center;
}

.user-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 240px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #eee;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1001;
  padding: 10px 0;
}

.user-wrapper:hover .user-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-header {
  padding: 15px 20px;
  border-bottom: 1px solid #f5f5f5;
  display: flex;
  flex-direction: column;
}

.user-dropdown-header strong {
  font-size: 0.9rem;
  color: #333;
}

.user-dropdown-header span {
  font-size: 0.75rem;
  color: #999;
  margin-top: 2px;
}

.user-dropdown-content a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  font-size: 0.85rem;
  color: #555;
  transition: background 0.2s;
}

.user-dropdown-content a i {
  width: 16px;
  text-align: center;
  font-size: 0.9rem;
}

.user-dropdown-content a:hover {
  background: #f9f9f9;
  color: #000;
}

.user-dropdown-content hr {
  border: 0;
  border-top: 1px solid #f5f5f5;
  margin: 5px 0;
}

.user-dropdown-content .logout-link {
  color: #ff4d4d;
}

.user-dropdown-content .logout-link:hover {
  background: #fff5f5;
  color: #ff4d4d;
}

/* Adjust nav-icons spacing to prevent jump */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 150px;
  justify-content: flex-end;
}

/* Floating Widgets */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-message {
  position: absolute;
  left: 75px; /* Position to the right of the icon */
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #333;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.5s forwards;
}
.whatsapp-message::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 50%;
  transform: translateY(-50%);
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #fff;
}

@keyframes popIn {
  to {
    opacity: 1;
    visibility: visible;
    left: 80px;
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: white;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #000;
  color: white;
  border: none;
  border-radius: 50%;
  display: none; /* Hidden by default */
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  transition: all 0.3s;
}

.back-to-top:hover {
  background-color: #333;
  transform: translateY(-5px);
}

/* ==========================================================================
   RESPONSIVITY & MEDIA QUERIES
   ========================================================================== */

/* Large Screens (1200px) */
@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

/* Tablets / Laptops (992px) */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* Tablets (900px) */
@media (max-width: 900px) {
  .container {
    padding: 0 30px !important;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
  .hero-content h1 {
    font-size: 3.5rem !important;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  header {
    padding: 8px 0;
  }
  .logo img {
    height: 32px !important;
  }
  .nav-links {
    display: none !important;
  }
  .user-wrapper {
    display: none !important;
  }
  .mobile-nav-toggle {
    display: block !important;
    order: 2;
    margin-left: auto;
    padding: 5px;
  }
  .nav-icons {
    order: 3;
    width: auto !important;
    gap: 15px !important;
  }
  #newsletter-popup {
    flex-direction: column;
    max-height: 85vh;
  }
  #newsletter-popup .popup-image {
    min-height: 350px;
    background-position: top center;
    background-size: cover;
    flex: none;
  }
  #newsletter-popup .popup-content {
    padding: 25px 20px;
  }
  #newsletter-popup h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }
  #newsletter-popup p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  #newsletter-popup .close-btn {
    top: 12px;
    right: 12px;
    background: #000;
    color: #fff;
    width: 35px;
    height: 35px;
    font-size: 1.6rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 25px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
}

/* Small Mobile (600px) */
@media (max-width: 600px) {
  .container {
    padding: 0 20px !important;
  }
  .hero-carousel {
    height: 75vh !important;
  }
  .hero-content h1 {
    font-size: 2.2rem !important;
  }
  h2 {
    font-size: 1.4rem !important;
    margin-bottom: 40px !important;
  }

  .announcement-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px;
    font-size: 0.75rem;
  }
}

/* Extra Small Mobile (576px) */
@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Tiny Screens (480px) */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
}

/* Custom Size & Special Order Styles */
.custom-size-notice {
  background: #fdfdfd;
  padding: 15px 20px;
  border-left: 3px solid #000;
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: #444;
}

.custom-size-notice a {
  text-decoration: underline;
  font-weight: 600;
}

.order-special-box {
  margin: 30px 0;
  animation: fadeIn 0.4s ease;
}

.custom-only-content {
  background: #f9f9f9;
  padding: 30px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.custom-only-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #000;
}

.custom-only-content p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-group .btn-outline {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}

.cta-group .btn-outline:hover {
  background: #000;
  color: #fff;
}

/* Checkout Styles */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
  align-items: start;
}
.checkout-section {
  background: white;
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 25px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
}
.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 15px;
}

.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}
.form-group input {
  width: 100%;
  padding: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fafafa;
}
.form-group input:focus {
  border-color: #000;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
  outline: none;
}

/* Delivery Options */
.delivery-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.delivery-card {
  position: relative;
  cursor: pointer;
}
.delivery-card input {
  position: absolute;
  opacity: 0;
}
.delivery-card .card-content {
  border: 2px solid #f0f0f0;
  padding: 25px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.delivery-card input:checked + .card-content {
  border-color: #000;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Payment Options Grid - Premium Redesign */
.payment-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 15px;
}
.payment-card {
  position: relative;
  cursor: pointer;
  height: 100%;
}
.payment-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.payment-card .card-content {
  border: 1px solid #e0e0e0;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  transition: all 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 110px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.payment-card:hover .card-content {
  border-color: #aaa;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.payment-card input:checked + .card-content {
  border-color: #000;
  border-width: 2px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
/* Checkmark for selected state */
.payment-card input:checked + .card-content::after {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 0.75rem;
  color: #000;
}

.method-icon-container {
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  width: 100%;
}
.method-icon-container img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}
.method-icon-container i {
  font-size: 1.8rem;
  color: #999;
  transition: all 0.3s;
}

/* Active/Hover states */
.payment-card:hover .method-icon-container img,
.payment-card input:checked + .card-content .method-icon-container img {
  filter: grayscale(0%);
  opacity: 1;
}
.payment-card:hover .method-icon-container i,
.payment-card input:checked + .card-content .method-icon-container i {
  color: #000;
}

.payment-card span {
  font-size: 0.7rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  line-height: 1.2;
}
.payment-card input:checked + .card-content span {
  color: #000;
}

/* Sidebar & Summary */
.summary-box {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 120px;
}
.order-item {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
}
.item-img {
  width: 70px;
  height: 70px;
  background: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
}
.item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: #333;
}
.item-qty {
  font-size: 0.8rem;
  color: #999;
}
.item-price {
  font-size: 0.95rem;
  font-weight: 700;
  margin-top: 4px;
  color: #1a1a1a;
}

.btn-checkout-primary {
  width: 100%;
  padding: 22px;
  background: #000;
  color: white;
  border: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 6px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.btn-checkout-primary:hover {
  background: #222;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

@media (max-width: 992px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
  .checkout-sidebar {
    order: -1;
    margin-bottom: 40px;
  }
  .summary-box {
    position: static;
  }
}

@media (max-width: 600px) {
  .checkout-page-container {
    padding: 30px 0;
  }
  .checkout-section {
    padding: 25px;
  }
  .payment-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .card-content {
    height: 110px;
    padding: 15px 10px;
  }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
}

/* Custom Add to Cart Button */
.btn-add-cart {
  background-color: #000 !important;
  color: #fff !important;
  font-weight: 700;
  transition: all 0.3s ease;
}
.btn-add-cart:hover {
  background-color: #d4c4b5 !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 600px) {
  .footer-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
  }
  .trust-item,
  .trust-item:last-child {
    align-items: center;
  }
  .payment-logos {
    justify-content: center;
  }
}
