/* 
  Flower Shop Design System 
  Theme: Elegant, Premium, Natural
*/

:root {
  /* Colors */
  --primary: #fce4ec;
  /* Light Pink */
  --primary-dark: #f06292;
  /* Deep Pink */
  --secondary: #f3e5f5;
  /* Lavender */
  --accent: #2e7d32;
  /* Deep Green */
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --off-white: #F1F8E9;
  /* Soft Green */
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Lato', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-dark);
  color: var(--white);
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #d81b60;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-dark);
  margin: 15px auto 0;
}

/* Header */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-dark);
}

nav ul {
  display: flex;
  gap: 30px;
}

nav a {
  font-weight: 500;
  font-size: 1rem;
}

nav a:hover,
nav a.active {
  color: var(--primary-dark);
}

.header-icons {
  display: flex;
  gap: 20px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Footer */
footer {
  background-color: #222;
  color: var(--white);
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a:hover {
  color: var(--primary);
}

.copyright {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 20px;
  color: #888;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-3px);
}

.social-icon-img {
  width: 24px;
  height: 24px;
  vertical-align: middle;
  margin-right: 8px;
  border-radius: 50%;
  /* Optional: round icon if desired, or remove if square is preferred */
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features-section {
  padding: 80px 0;
  background-color: var(--off-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.feature-card {
  background: var(--white);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card h3 {
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.feature-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Details Section */
.details-section {
  padding: 80px 0;
  background-color: var(--white);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.detail-col h3 {
  color: var(--accent);
  margin-bottom: 20px;
  font-size: 1.8rem;
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
  display: inline-block;
}

.detail-list li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}

.detail-list li::before {
  content: '•';
  color: var(--primary-dark);
  position: absolute;
  left: 0;
  font-size: 1.5rem;
  line-height: 1;
}


.quantity-selector select {
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  margin-right: 15px;
  cursor: pointer;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 15px;
}

.payment-badge {
  background: var(--off-white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #eee;
  font-weight: 600;
}

.natural-note {
  text-align: center;
  margin-top: 60px;
  padding: 20px;
  background: var(--secondary);
  border-radius: 5px;
  font-style: italic;
  color: var(--text-dark);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .details-grid {
    grid-template-columns: 1fr;
  }
}

/* Login Page Styles */
.login-section {
  padding: 80px 0;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://images.unsplash.com/photo-1563241527-300e27839687?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
}

.login-card {
  background: var(--white);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.login-card h2 {
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.login-card p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  border-color: var(--primary-dark);
  outline: none;
}

.btn-block {
  width: 100%;
  margin-top: 10px;
}

.form-footer {
  margin-top: 20px;
  font-size: 0.9rem;
}

.form-footer a {
  color: var(--primary-dark);
  font-weight: 600;
}