/* ===== CSS Custom Properties ===== */
:root {
  --primary: #1a1a2e;
  --primary-light: #16213e;
  --accent: #c0392b;
  --accent-hover: #a93226;
  --accent-light: #e8453a;
  --gold: #d4a537;
  --gray-50: #fafafa;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --white: #ffffff;
  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition: all 0.3s ease;
  --transition-fast: all 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background-color: var(--white);
  line-height: 1.7;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

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

a:hover {
  color: var(--accent-hover);
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.section-subtitle {
  text-align: center;
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-divider {
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 1.5rem;
  border-radius: 2px;
}

/* ===== Section Spacing ===== */
.section-padding {
  padding: 80px 0;
}

.section-padding-sm {
  padding: 60px 0;
}

.bg-light-custom {
  background-color: var(--gray-50);
}

.bg-dark-section {
  background-color: var(--primary);
  color: var(--white);
}

.bg-dark-section h2,
.bg-dark-section h3,
.bg-dark-section h4 {
  color: var(--white);
}

.bg-dark-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.bg-accent-section {
  background-color: var(--accent);
  color: var(--white);
}

/* ===== Top Bar ===== */
.top-bar {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
  margin-right: 20px;
  font-size: 0.82rem;
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar i {
  margin-right: 5px;
  color: var(--accent-light);
}

.top-bar .proda-link {
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
}

.top-bar .proda-link:hover {
  color: var(--accent-light);
}

/* ===== Navbar ===== */
.main-navbar {
  background-color: var(--white);
  padding: 12px 0;
  transition: var(--transition);
  border-bottom: 1px solid var(--gray-200);
}

.main-navbar.scrolled {
  padding: 6px 0;
  box-shadow: var(--shadow-md);
}

.main-navbar .navbar-brand img {
  height: 38px;
  transition: var(--transition);
}

.main-navbar.scrolled .navbar-brand img {
  height: 32px;
}

.main-navbar .nav-link {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 8px 14px !important;
  transition: var(--transition-fast);
  position: relative;
}

.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
  color: var(--accent);
}

.main-navbar .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.main-navbar .dropdown-menu {
  border: none;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  padding: 8px 0;
  min-width: 220px;
}

.main-navbar .dropdown-item {
  padding: 8px 20px;
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: var(--transition-fast);
}

.main-navbar .dropdown-item:hover {
  background-color: var(--gray-100);
  color: var(--accent);
  padding-left: 24px;
}

.nav-cta .btn {
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 6px;
  font-weight: 600;
}

/* ===== Buttons ===== */
.btn-accent {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.3);
}

.btn-outline-accent {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: transparent;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-outline-accent:hover {
  background-color: var(--accent);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-dark-custom {
  background-color: var(--primary);
  color: var(--white);
  border: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-dark-custom:hover {
  background-color: var(--primary-light);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(26, 26, 46, 0.3);
}

.btn-whatsapp {
  background-color: #25d366;
  color: var(--white);
  border: none;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
}

.btn-whatsapp:hover {
  background-color: #1da851;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-lg {
  padding: 12px 28px;
  font-size: 1rem;
}

/* ===== Hero Section ===== */
.hero-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
  min-height: auto;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1611532736597-de2d4265fba3?auto=format&fit=crop&w=1000&q=80') center/cover no-repeat;
  opacity: 0.15;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to top, var(--white), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.hero-content .hero-badge {
  display: inline-block;
  background: rgba(192, 57, 43, 0.2);
  border: 1px solid rgba(192, 57, 43, 0.4);
  color: var(--accent-light);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.hero-content h1 {
  color: var(--white);
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-content h1 span {
  color: var(--accent-light);
}

.hero-content .hero-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 24px;
  max-width: 520px;
  line-height: 1.7;
}

.hero-price-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.hero-price-badge .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-right: 12px;
}

.hero-price-badge .price-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
}

.hero-buttons .btn {
  padding: 11px 24px;
  font-size: 0.95rem;
  margin-right: 10px;
  margin-bottom: 10px;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-item h4 {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 2px;
}

.hero-stat-item p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin: 0;
}

/* ===== Features / Advantages ===== */
.feature-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  color: var(--white);
}

.feature-card .feature-icon.bg-accent { background: var(--accent); }
.feature-card .feature-icon.bg-primary { background: var(--primary); }
.feature-card .feature-icon.bg-success { background: #27ae60; }
.feature-card .feature-icon.bg-warning { background: var(--gold); }
.feature-card .feature-icon.bg-info { background: #2980b9; }

.feature-card h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* ===== Product Cards ===== */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.product-card .product-img {
  height: 200px;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.product-card .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card .product-img .product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card:hover .product-img .product-overlay {
  background: rgba(26, 26, 46, 0.5);
}

.product-card .product-img .product-overlay .btn {
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.product-card:hover .product-img .product-overlay .btn {
  opacity: 1;
  transform: translateY(0);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card .product-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card .product-body h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-card .product-body .product-desc {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.product-card .product-body .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
}

.product-card .product-body .product-meta .quantity {
  font-size: 0.78rem;
  color: var(--gray-500);
  font-weight: 500;
}

.product-card .product-body .product-meta .price-btn {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition-fast);
}

.product-card .product-body .product-meta .price-btn:hover {
  color: var(--accent-hover);
}

/* ===== Pricing CTA ===== */
.pricing-cta {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  border-radius: var(--radius-xl);
  padding: 50px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.pricing-cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.pricing-cta h2 {
  color: var(--white);
  font-size: 1.8rem;
}

.pricing-cta .price-big {
  font-size: 3rem;
  font-weight: 800;
}

.pricing-cta p {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== Category Cards ===== */
.category-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.category-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
  display: block;
}

.category-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.category-card p {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin: 0;
}

/* ===== Gallery / Portfolio ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.7), transparent);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

/* ===== Services Block (Proda) ===== */
.service-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  height: 100%;
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.service-box .service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.service-box h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

/* ===== About Preview ===== */
.about-preview-img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-checklist li {
  padding: 6px 0;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.about-checklist li i {
  color: var(--accent);
  margin-right: 10px;
  font-size: 0.85rem;
}

/* ===== Blog Cards ===== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.blog-card .blog-img {
  height: 200px;
  overflow: hidden;
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.blog-card:hover .blog-img img {
  transform: scale(1.05);
}

.blog-card .blog-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card .blog-category {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--accent);
  margin-bottom: 8px;
}

.blog-card .blog-body h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.blog-card .blog-body p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 14px;
  line-height: 1.6;
  flex: 1;
}

.blog-card .blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* ===== Contact CTA ===== */
.contact-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 60px 0;
  position: relative;
}

.contact-cta h2 {
  color: var(--white);
}

.contact-cta p {
  color: rgba(255, 255, 255, 0.75);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.contact-info-item .icon-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-info-item .icon-box.bg-accent { background: var(--accent); color: var(--white); }
.contact-info-item .icon-box.bg-success { background: #25d366; color: var(--white); }
.contact-info-item .icon-box.bg-primary-l { background: rgba(255,255,255,0.1); color: var(--white); }

.contact-info-item h6 {
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-item p,
.contact-info-item a {
  font-size: 0.88rem;
  margin: 0;
}

/* ===== Footer ===== */
.main-footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 0;
}

.main-footer h5 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.main-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.main-footer p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: var(--transition-fast);
}

.footer-links li a:hover {
  color: var(--white);
  padding-left: 4px;
}

.footer-links li a i {
  margin-right: 8px;
  font-size: 0.75rem;
  color: var(--accent);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  margin-top: 40px;
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--accent-light);
  font-weight: 600;
}

.footer-bottom a:hover {
  color: var(--white);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  margin-right: 8px;
  transition: var(--transition);
  font-size: 0.9rem;
}

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

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-wp 2s infinite;
}

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

@keyframes pulse-wp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ===== Page Header (Inner Pages) ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 50px 0 40px;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(to top, var(--white), transparent);
}

.page-header h1 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.page-header .breadcrumb {
  background: none;
  padding: 0;
  margin: 0;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.page-header .breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.9);
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Form Styles ===== */
.form-control-custom {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  background: var(--white);
}

.form-control-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
  outline: none;
}

.form-label-custom {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-select-custom {
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 10px 16px;
  font-size: 0.92rem;
  transition: var(--transition-fast);
  appearance: auto;
}

.form-select-custom:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

/* ===== Info Cards ===== */
.info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 30px;
  height: 100%;
  transition: var(--transition);
}

.info-card:hover {
  box-shadow: var(--shadow-md);
}

.info-card .icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

/* ===== Bank Info (Premium) ===== */
.bank-card-premium {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
}

.bank-card-premium:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-300);
}

.bank-card-header {
  background: var(--gray-50);
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
}

.bank-logo-img {
  height: 32px;
  max-width: 160px;
  object-fit: contain;
}

.bank-card-body {
  padding: 4px 0;
}

.bank-detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  border-bottom: 1px solid var(--gray-100);
  gap: 12px;
}

.bank-detail-row:last-child {
  border-bottom: none;
}

.bank-detail-row.iban-row {
  background: rgba(192, 57, 43, 0.03);
}

.bank-label {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
  white-space: nowrap;
  min-width: 72px;
  flex-shrink: 0;
}

.bank-value-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
  min-width: 0;
}

.bank-value {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  text-align: right;
  word-break: break-all;
}

.btn-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-500);
  font-size: 0.78rem;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.btn-copy:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-copy.copied {
  background: #27ae60;
  color: var(--white);
  border-color: #27ae60;
}

/* ===== eVezne / Online Ödeme Card ===== */
.evezne-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 28px 32px;
  border-left: 4px solid var(--accent);
  transition: var(--transition);
}

.evezne-card:hover {
  box-shadow: var(--shadow-md);
}

.evezne-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(192, 57, 43, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ===== Pricing Table (Homepage) ===== */
.pricing-table-section .section-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-table-section .section-note i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-table-wrapper {
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  background: var(--white);
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table thead th {
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 14px 18px;
  text-align: left;
  white-space: nowrap;
}

.pricing-table thead th:last-child,
.pricing-table thead th:nth-child(3) {
  text-align: center;
}

.pricing-table tbody tr {
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition-fast);
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:hover {
  background: rgba(192, 57, 43, 0.02);
}

.pricing-table tbody td {
  padding: 14px 18px;
  font-size: 0.88rem;
  color: var(--gray-700);
  vertical-align: middle;
}

.pricing-table tbody td:nth-child(3),
.pricing-table tbody td:nth-child(4) {
  text-align: center;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-table tbody td:nth-child(3) {
  color: var(--gray-700);
}

.pricing-table tbody td:nth-child(4) {
  color: var(--accent);
}

.pricing-table tbody td:nth-child(2) {
  white-space: nowrap;
  color: var(--gray-500);
  font-size: 0.82rem;
}

.pricing-table .product-name {
  font-weight: 600;
  color: var(--gray-800);
  font-size: 0.85rem;
  line-height: 1.4;
}

.pricing-table .row-highlight {
  background: var(--gray-50);
}

/* Pricing cards - mobile */
.pricing-card-mobile {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 12px;
  transition: var(--transition);
}

.pricing-card-mobile:hover {
  box-shadow: var(--shadow-sm);
}

.pricing-card-mobile .pcm-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 12px;
  line-height: 1.4;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.pricing-card-mobile .pcm-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 0.85rem;
}

.pricing-card-mobile .pcm-label {
  color: var(--gray-500);
  font-weight: 500;
}

.pricing-card-mobile .pcm-value {
  font-weight: 700;
  color: var(--gray-700);
}

.pricing-card-mobile .pcm-value.accent {
  color: var(--accent);
}

/* Desktop table, mobile cards */
.pricing-desktop { display: block; }
.pricing-mobile { display: none; }

@media (max-width: 767.98px) {
  .pricing-desktop { display: none; }
  .pricing-mobile { display: block; }

  .bank-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 18px;
  }

  .bank-value-group {
    justify-content: flex-start;
    width: 100%;
  }

  .bank-value {
    font-size: 0.82rem;
  }

  .evezne-card {
    padding: 20px;
  }
}

/* ===== Order Terms ===== */
.terms-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  padding: 28px;
  margin-bottom: 20px;
}

.terms-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.terms-card h4 .num {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.terms-card p, .terms-card ul {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.terms-card ul {
  padding-left: 18px;
}

.terms-card ul li {
  margin-bottom: 4px;
}

/* ===== Blog Detail ===== */
.blog-detail-content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--gray-700);
}

.blog-detail-content h2 {
  font-size: 1.4rem;
  margin-top: 32px;
  margin-bottom: 14px;
}

.blog-detail-content h3 {
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 12px;
}

.blog-detail-content p {
  margin-bottom: 16px;
}

.blog-detail-content img {
  border-radius: var(--radius-lg);
  margin: 24px 0;
}

.blog-detail-content blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: var(--gray-50);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--gray-600);
}

.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-widget h5 {
  font-size: 1rem;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
}

.sidebar-post:last-child {
  border-bottom: none;
}

.sidebar-post img {
  width: 70px;
  height: 50px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.sidebar-post h6 {
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 2px;
  line-height: 1.3;
}

.sidebar-post span {
  font-size: 0.72rem;
  color: var(--gray-500);
}

.sidebar-category {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
  color: var(--gray-700);
}

.sidebar-category:last-child {
  border-bottom: none;
}

.sidebar-category:hover {
  color: var(--accent);
}

.sidebar-category .badge {
  background: var(--gray-100);
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.75rem;
}

/* ===== Map Placeholder ===== */
.map-placeholder {
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1rem;
  overflow: hidden;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg);
}

/* ===== Filter Bar ===== */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  justify-content: center;
}

.filter-bar .filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--gray-300);
  background: var(--white);
  color: var(--gray-600);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-bar .filter-btn:hover,
.filter-bar .filter-btn.active {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat-item h4 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .pricing-cta {
    padding: 36px 24px;
  }

  .pricing-cta .price-big {
    font-size: 2.4rem;
  }

  .nav-cta {
    margin-top: 14px;
    margin-left: 0 !important;
  }

  .main-navbar .nav-link.active::after {
    display: none;
  }

  .top-bar .text-end {
    text-align: left !important;
    margin-top: 4px;
  }
}

@media (max-width: 767.98px) {
  .hero-content h1 {
    font-size: 1.7rem;
  }

  .hero-price-badge {
    flex-direction: column;
    text-align: center;
  }

  .hero-price-badge .price {
    margin-right: 0;
    margin-bottom: 4px;
  }

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

  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-right: 0;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .top-bar {
    display: none;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .pricing-cta .price-big {
    font-size: 2rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .footer-bottom {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Utilities ===== */
.text-accent {
  color: var(--accent) !important;
}

.bg-accent-soft {
  background-color: rgba(192, 57, 43, 0.08);
}

.fw-800 {
  font-weight: 800;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.hover-lift {
  transition: var(--transition);
}

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