/* Cubiik - Consumer-Friendly Gift Shop Design */

:root {
  /* Warm, inviting color palette */
  --color-primary: #d4a574;
  --color-primary-dark: #b8956a;
  --color-primary-light: #e8c9a8;
  --color-secondary: #8b9a6b;
  --color-accent: #c4544a;
  --color-accent-light: #f3d4d2;

  /* Backgrounds */
  --bg-cream: #faf8f5;
  --bg-white: #ffffff;
  --bg-warm: #f5f0eb;
  --bg-dark: #2d2926;

  /* Text colors */
  --text-dark: #2d2926;
  --text-medium: #1c1610;
  --text-light: #8a847e;
  --text-white: #ffffff;

  /* Other */
  --border-light: #e8e4df;
  --shadow-soft: 0 4px 20px rgba(45, 41, 38, 0.08);
  --shadow-medium: 0 8px 30px rgba(45, 41, 38, 0.12);
  --shadow-hover: 0 12px 40px rgba(45, 41, 38, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --transition: 0.3s ease;
}

/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

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

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
  border-radius: 4px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography - Consistent Font System */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

p,
span,
a,
li,
label,
input,
select,
textarea,
button {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
}

.highlight {
  color: var(--color-accent);
}

/* Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-accent) 0%, #d45f56 100%);
  color: var(--text-white);
  text-align: center;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
}

.announcement-bar strong {
  background: rgba(255, 255, 255, 0.2);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-soft);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.05);
}

.logo-text {
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--text-dark);
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

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

.nav-links a:hover {
  color: var(--text-dark);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: white;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all var(--transition);
  border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-medium);
  opacity: 0;
  transform: translateY(-10px);
  transition: all var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu ul {
  list-style: none;
  padding: 20px;
}

.mobile-menu li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 16px 0;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
  overflow: hidden;
  padding: 60px 0;
}

.hero-decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
}

.hero-dec-1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary-light);
  top: -100px;
  right: -100px;
}

.hero-dec-2 {
  width: 300px;
  height: 300px;
  background: var(--color-accent-light);
  bottom: -50px;
  left: -50px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-content h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-medium);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-features {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-medium);
}

.feature-icon {
  font-size: 20px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid var(--border-light);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  background: var(--bg-white);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
}

.hero-img {
  width: 100%;
  max-width: 450px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

.floating-card {
  position: absolute;
  background: white;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 4s ease-in-out infinite;
}

.floating-card.fc-1 {
  top: 20%;
  right: -20px;
}

.floating-card.fc-2 {
  bottom: 15%;
  left: -20px;
  animation-delay: -2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.fc-emoji {
  font-size: 24px;
}

.fc-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Trust Bar */
.trust-bar {
  background: white;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-light);
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-number {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
}

.trust-label {
  font-size: 14px;
  color: var(--text-light);
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border-light);
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  background: var(--color-primary-light);
  color: var(--color-primary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-xl);
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-desc {
  font-size: 17px;
  color: var(--text-medium);
}

/* Categories Section */
.categories {
  background: var(--bg-white);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition);
  overflow: hidden;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: var(--color-primary);
}

.category-icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.category-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  color: var(--text-light);
}

.category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-accent);
  color: white;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-size: 11px;
  font-weight: 600;
}

/* Animation for cards */
.category-card,
.product-card,
.feature-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.category-card.animate-in,
.product-card.animate-in,
.feature-card.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Products Section */
.products {
  background: var(--bg-cream);
}

.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border-light);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-medium);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover {
  border-color: var(--color-primary);
  color: var(--text-dark);
}

.filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

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

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  border-radius: var(--radius-xl);
  font-size: 12px;
  font-weight: 600;
  z-index: 10;
}

.badge-hot {
  background: #ff6b6b;
  color: white;
}

.badge-new {
  background: var(--color-secondary);
  color: white;
}

.badge-bestseller {
  background: var(--color-primary);
  color: white;
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(45, 41, 38, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  background: white;
  color: var(--text-dark);
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transform: translateY(20px);
  transition: all var(--transition);
}

.product-card:hover .quick-view-btn {
  transform: translateY(0);
}

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

.product-info {
  padding: 24px;
}

.product-category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.product-info h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.product-info p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.product-price {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
}

.product-price span {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

.product-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-cream);
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

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

.view-all-container {
  text-align: center;
  margin-top: 48px;
}

/* Gifting Section */
.gifting {
  background: linear-gradient(135deg, #fef6f0 0%, #fff9f5 100%);
}

.gifting-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gifting-text p {
  color: var(--text-medium);
  margin-bottom: 32px;
}

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.occasion-item {
  background: white;
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.occasion-item:hover {
  transform: translateY(-4px);
}

.occasion-emoji {
  display: block;
  font-size: 28px;
  margin-bottom: 8px;
}

.occasion-item span:last-child {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-medium);
}

.gifting-features {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
}

.gift-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.gift-feature-icon {
  font-size: 28px;
  background: white;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.gift-feature h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.gift-feature p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.gifting-visual {
  position: relative;
}

.gift-box {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.gift-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Custom Orders Section */
.custom-orders {
  background: var(--bg-white);
}

.custom-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.custom-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

.custom-image img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-text p {
  color: var(--text-medium);
  margin-bottom: 40px;
}

.custom-steps {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.custom-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.step-content h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.step-content p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.custom-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Why Us Section */
.why-us {
  background: var(--bg-cream);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: white;
  padding: 32px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.feature-icon-box {
  font-size: 40px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info p {
  color: var(--text-medium);
  margin-bottom: 40px;
}

.contact-methods {
  display: grid;
  gap: 16px;
  margin-bottom: 40px;
}

.contact-method {
  display: flex;
  gap: 16px;
  align-items: center;
  background: white;
  padding: 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: inherit;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
}

.contact-method:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
}

.whatsapp-method {
  background: #e8f8ee;
  border: 2px solid #25d366;
}

.whatsapp-method:hover {
  background: #d4f4dd;
}

.method-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.whatsapp-method .method-icon {
  background: #25d366;
  color: white;
}

.contact-method h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-method p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.business-hours {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.business-hours h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}

.business-hours p {
  font-size: 14px;
  color: var(--text-medium);
  margin: 4px 0;
}

/* Contact Form */
.contact-form-container {
  background: white;
  padding: 40px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-medium);
}

.contact-form-container h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-container > p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-medium);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  background: var(--bg-cream);
  color: var(--text-dark);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  width: 100%;
  background: var(--color-primary);
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover:not(:disabled) {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
}

.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form Success */
.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 60px;
  margin-bottom: 20px;
}

.form-success h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-medium);
  margin-bottom: 24px;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer .logo {
  margin-bottom: 16px;
}

.footer .logo-text {
  color: white;
}

.footer .logo:hover .logo-icon {
  transform: rotate(-10deg) scale(1.05);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition);
}

.footer-social a:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-4px);
}

.footer-column h4 {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: white;
}

.footer-column ul {
  list-style: none;
}

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

.footer-column a,
.footer-column span {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: white;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container,
  .gifting-content,
  .custom-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-img {
    max-width: 100%;
  }

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

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

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

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-menu {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-features {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .floating-card {
    display: none;
  }

  .trust-items {
    gap: 20px;
  }

  .trust-divider {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

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

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

  .product-filters {
    gap: 8px;
  }

  .filter-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .custom-ctas {
    flex-direction: column;
  }

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

  .contact-form-container {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .announcement-bar {
    font-size: 12px;
    padding: 10px 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .product-info {
    padding: 16px;
  }

  .product-price {
    font-size: 20px;
  }
}
