/* Licht Vlam - Glamorous Travel-Inspired Design */
:root {
  --primary-color: #FF99CC;
  --secondary-color: #C71585;
  --light-pink: #FFE4E1;
  --background: #f8f9fa;
  --dark-bg: #2c2c34;
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  --gradient-secondary: linear-gradient(45deg, var(--light-pink), var(--primary-color));
  --shadow-soft: 0 10px 30px rgba(255, 153, 204, 0.2);
  --shadow-hover: 0 15px 40px rgba(199, 21, 133, 0.3);
  --border-radius: 20px;
  --animation-speed: 0.3s;
}

* {
  box-sizing: border-box;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--background);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  padding-top: 80px;
  overflow-x: hidden;
}

/* Background Animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(255, 153, 204, 0.03) 50%, transparent 100%);
  animation: shimmer 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: -1;
}

@keyframes shimmer {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  color: var(--secondary-color);
  line-height: 1.3;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

p {
  font-family: 'Nunito', sans-serif;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Loading Animation */
@keyframes suitcaseShake {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

.loading-content {
  text-align: center;
  color: white;
}

.suitcase-icon {
  font-size: 4rem;
  animation: suitcaseShake 1s ease-in-out infinite;
  margin-bottom: 1rem;
}

/* Navbar Styling */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 25px rgba(199, 21, 133, 0.1);
  padding: 1.2rem 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--animation-speed) ease;
  min-height: 80px;
}

.navbar-nav {
  align-items: center;
  height: 100%;
}

.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  height: 50px;
}

.navbar-brand {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all var(--animation-speed) ease;
}

.navbar-brand:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 5px 15px rgba(255, 153, 204, 0.4));
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.8rem 1.2rem !important;
  position: relative;
  transition: all var(--animation-speed) ease;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  min-width: 120px;
  text-align: center;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--animation-speed) ease;
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-color) !important;
  background: rgba(255, 153, 204, 0.1);
  transform: translateY(-3px);
}

.nav-link:hover::before {
  width: 80%;
}

/* Search Form */
.search-form {
  max-width: 400px;
  width: 100%;
}

.search-form .form-control {
  border-radius: 25px 0 0 25px;
  border: 2px solid var(--light-pink);
  font-family: 'Nunito', sans-serif;
  padding: 0.8rem 1.5rem;
  transition: all var(--animation-speed) ease;
  background: rgba(255, 255, 255, 0.9);
}

.search-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 153, 204, 0.3);
  transform: translateY(-2px);
}

.search-form .btn {
  border-radius: 0 25px 25px 0;
  border: 2px solid var(--primary-color);
  background: var(--gradient-primary);
  color: white;
  padding: 0.8rem 1.5rem;
  transition: all var(--animation-speed) ease;
}

.search-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* Cart Buttons */
.cart-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.snipcart-checkout {
  background: var(--gradient-primary);
  border: none;
  color: white;
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  transition: all var(--animation-speed) ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}

.snipcart-checkout::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.snipcart-checkout:hover::before {
  left: 100%;
}

.snipcart-checkout:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.snipcart-items-count {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  min-width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.snipcart-items-count:empty {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
}

.carousel-item {
  height: 70vh;
  min-height: 500px;
  background-position: center;
  background-size: cover;
  position: relative;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 153, 204, 0.3), rgba(199, 21, 133, 0.2));
  z-index: 1;
}

.carousel-caption {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: var(--border-radius);
  max-width: 600px;
  box-shadow: var(--shadow-soft);
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}



.carousel-caption h1 {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #666;
}

/* Button Styles */
.btn {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  padding: 0.8rem 2rem;
  border-radius: var(--border-radius);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all var(--animation-speed) ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-primary {
  background: var(--gradient-primary);
  color: white;
  box-shadow: var(--shadow-soft);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: white;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-outline-primary {
  background: transparent;
  color: var(--secondary-color);
  border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Category Cards */
.categories-section {
  padding: 5rem 0;
  position: relative;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255, 153, 204, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(199, 21, 133, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: all var(--animation-speed) ease;
  background: white;
  height: 100%;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity var(--animation-speed) ease;
  z-index: 1;
}

.category-card:hover::before {
  opacity: 0.1;
}

.category-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-hover);
}

.category-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--animation-speed) ease;
}

.category-card:hover img {
  transform: scale(1.1);
}

.category-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.category-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Featured Products */
.featured-products {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--background) 0%, rgba(255, 153, 204, 0.05) 100%);
  position: relative;
}

.product-card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: all var(--animation-speed) ease;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--animation-speed) ease;
  z-index: 1;
}

.product-card:hover::before {
  opacity: 0.05;
}

.product-card:hover {
  transform: translateY(-10px) rotate(1deg);
  box-shadow: var(--shadow-hover);
}

.product-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform var(--animation-speed) ease;
}

.product-card:hover img {
  transform: scale(1.1) rotate(-1deg);
}

.product-content {
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-card h3 a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color var(--animation-speed) ease;
}

.product-card h3 a:hover {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-card .price {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 1.3rem;
  font-family: 'Montserrat Alternates', sans-serif;
  margin-bottom: 1rem;
}

.product-card .description {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  color: #666;
}

/* Newsletter Section */
.newsletter-section {
  background: var(--gradient-primary);
  color: white;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

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

.newsletter-section h2 {
  color: white;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.newsletter-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.newsletter-form {
  position: relative;
  z-index: 1;
}

.newsletter-form .form-control {
  border-radius: 25px 0 0 25px;
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

.newsletter-form .btn {
  border-radius: 0 25px 25px 0;
  padding: 1rem 2rem;
  background: white;
  color: var(--secondary-color);
  font-weight: 600;
}

.newsletter-form .btn:hover {
  background: var(--light-pink);
  transform: translateY(-2px);
}

/* About Section */
.about-section {
  padding: 5rem 0;
  background: linear-gradient(45deg, rgba(255, 228, 225, 0.3) 0%, rgba(255, 153, 204, 0.1) 100%);
}

.about-section img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--animation-speed) ease;
}

.about-section img:hover {
  transform: scale(1.05) rotate(2deg);
}

.about-section h2 {
  margin-bottom: 2rem;
}

.about-section p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1f 100%);
  padding: 4rem 0 2rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.footer h5 {
  font-family: 'Montserrat Alternates', sans-serif;
  font-weight: 600;
  color: white;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  position: relative;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background: var(--gradient-primary);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all var(--animation-speed) ease;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  display: inline-block;
  padding: 0.3rem 0;
  position: relative;
}

.footer a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-color);
  transition: width var(--animation-speed) ease;
}

.footer a:hover {
  color: var(--primary-color);
  transform: translateX(10px);
}

.footer a:hover::before {
  width: 100%;
}

.footer address {
  font-family: 'Nunito', sans-serif;
  line-height: 1.8;
  font-size: 1.1rem;
  font-style: normal;
  color: rgba(255, 255, 255, 0.8);
}

.footer p {
  font-family: 'Nunito', sans-serif;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* Floating Animation Elements */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
}

.bubble {
  position: absolute;
  background: radial-gradient(circle, rgba(255, 153, 204, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 80%;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 50%;
  animation-delay: 4s;
}

/* Responsive Design */
@media (max-width: 768px) {
  body {
    padding-top: 90px;
  }
  
  .navbar {
    min-height: 90px;
    padding: 1rem 0;
  }
  
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .carousel-caption {
    padding: 1.5rem;
    max-width: 90%;
  }
  
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  
  .carousel-caption p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .navbar-brand {
    font-size: 1.8rem;
  }
  
  .navbar-nav .nav-item {
    height: auto;
    width: 100%;
  }
  
  .nav-link {
    min-width: auto;
    width: 100%;
    height: auto;
    padding: 1rem 1.5rem !important;
    justify-content: flex-start;
  }
  
  .search-form {
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .cart-buttons {
    margin-top: 1rem;
    justify-content: center;
  }
  
  .category-content,
  .product-content {
    padding: 1.5rem;
  }
  
  .newsletter-section,
  .categories-section,
  .featured-products,
  .about-section {
    padding: 3rem 0;
  }
}

@media (max-width: 576px) {
  .carousel-caption {
    padding: 1rem;
    max-width: 95%;
  }
  
  .carousel-caption h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .carousel-caption p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Scroll animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading states */
.btn.loading {
  position: relative;
  color: transparent;
}

.btn.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  border-top: 3px solid var(--primary-color);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  margin: 0;
  font-family: 'Nunito', sans-serif;
  color: var(--secondary-color);
}

.cookie-content .btn {
  background: var(--gradient-primary);
  border: none;
  color: white;
  white-space: nowrap;
}

.cookie-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
