﻿ :root {
      --primary: #ef4444;
      --primary-dark: #dc2626;
      --primary-light: #f87171;
      --accent: #991b1b;
      --accent-dark: #7f1d1d;
      --dark: #0f172a;
      --dark-soft: #1e293b;
      --light: #f8fafc;
      --light-border: #e2e8f0;
      --gradient-primary: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
      --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
      --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
      --shadow-glow: 0 0 20px rgba(239, 68, 68, 0.3);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      overflow-x: hidden;
      background: #f1f1f1;
    }
    
    /* Modern Header with Blur Effect */
    .modern-header {
      background: rgba(255, 255, 255, 0.85);
      /*backdrop-filter: blur(20px) saturate(180%);*/
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .modern-header.scrolled {
      box-shadow: var(--shadow-md);
      background: rgba(255, 255, 255, 0.95);
      border-bottom-color: rgba(226, 232, 240, 0.8);
    }
    
    /* Animated Logo */
    .main-logo {
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      display: inline-block;
    }
    
    .main-logo:hover {
      transform: scale(1.05) rotate(-1deg);
    }
    
    .main-logo img {
      max-height: 48px;
      width: auto;
      filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
      transition: filter 0.3s ease;
    }
	
    .main-logo:hover svg {
      filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
    }
    
    .main-logo:hover path[fill*="mountainGrad"] {
      animation: mountainPulse 0.6s ease;
    }
    
    @keyframes mountainPulse {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-2px); }
    }
    
    /* Ultra-Modern Search Bar */
    .search-container {
      position: relative;
      max-width: 600px;
    }
    
    .search-bar {
      position: relative;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-radius: 16px;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      border: 2px solid transparent;
      box-shadow: var(--shadow-sm);
    }

	.form-control:focus
	{
		color: #212529;
		background-color: #fff;
		border-color: #86b7fe;
		outline: 0;
		box-shadow: 0 0 0 .25rem rgb(255 255 255 / 25%);
	}
    
    .search-bar:focus-within::before {
      opacity: 1;
    }
    
    .search-bar:focus-within {
      transform: translateY(-2px);
      box-shadow: var(--shadow-glow);
      background: #ffffff;
    }
    
    .search-bar input {
      border: none;
      background: transparent;
      padding: 14px 20px;
      outline: none;
      font-size: 15px;
      color: var(--dark);
      font-weight: 500;
    }
    
    .search-bar input::placeholder {
      color: #94a3b8;
      font-weight: 400;
    }
    
    .search-btn {
      border: none;
      background: var(--gradient-primary);
      color: white;
      border-radius: 12px;
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 0 4px 12px rgba(239, 68, 68, 0.25);
      position: relative;
      overflow: hidden;
    }
    
    .search-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    
    .search-btn:hover::before {
      opacity: 1;
    }
    
    .search-btn:hover {
      transform: scale(1.1) rotate(8deg);
      box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
    }
    
    .search-btn:active {
      transform: scale(0.95) rotate(8deg);
    }
    
    /* Premium Icon Buttons */
    .icon-btn {
      position: relative;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      border: none;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      color: var(--dark-soft);
      box-shadow: var(--shadow-sm);
      cursor: pointer;
    }
    
    .icon-btn::before {
      content: '';
      position: absolute;
      inset: 0;
      border-radius: 14px;
      background: var(--gradient-primary);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: -1;
    }
    
    .icon-btn:hover::before {
      opacity: 1;
    }
    
    .icon-btn:hover {
      color: white;
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }
    
    .icon-btn i {
      font-size: 18px;
      transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    .icon-btn:hover i {
      transform: scale(1.1);
    }
    
    /* Animated Cart Badge */
    .cart-badge {
      position: absolute;
      top: -6px;
      right: -6px;
      background: var(--gradient-accent);
      color: white;
      min-width: 22px;
      height: 22px;
      border-radius: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 700;
      padding: 0 6px;
      box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
      animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    
    @keyframes popIn {
      0% {
        transform: scale(0);
      }
      50% {
        transform: scale(1.2);
      }
      100% {
        transform: scale(1);
      }
    }
    
    .icon-btn:hover .cart-badge {
      animation: wiggle 0.5s ease;
    }
    
    @keyframes wiggle {
      0%, 100% { transform: rotate(0deg); }
      25% { transform: rotate(-10deg); }
      75% { transform: rotate(10deg); }
    }
    
    /* Premium Support Box */
    .support-box {
      padding: 12px 20px;
      border-radius: 14px;
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      border-left: 4px solid var(--primary);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: var(--shadow-sm);
    }
    
    .support-box:hover {
      transform: translateX(-6px);
      box-shadow: var(--shadow-md);
      background: white;
    }
    
    .support-box .label {
      color: #64748b;
      font-size: 12px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 2px;
      display: block;
    }
    
    .support-box .phone {
      color: var(--primary);
      font-weight: 700;
      font-size: 17px;
      margin: 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    
    .support-box .phone i {
      animation: ring 2s ease infinite;
    }
    
    @keyframes ring {
      0%, 100% { transform: rotate(0deg); }
      10%, 30% { transform: rotate(-10deg); }
      20%, 40% { transform: rotate(10deg); }
    }
    
    /* Ultra-Premium Catalog Button */
    .catalog-btn {
      background: var(--gradient-primary);
      border: none;
      padding: 14px 28px;
      border-radius: 14px;
      color: white;
      font-weight: 700;
      font-size: 15px;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
      letter-spacing: 0.3px;
    }
    
    .catalog-btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      transform: translate(-50%, -50%);
      transition: width 0.6s ease, height 0.6s ease;
    }
    
    .catalog-btn:hover::before {
      width: 300px;
      height: 300px;
    }
    
    .catalog-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(239, 68, 68, 0.4);
    }
    
    .catalog-btn:active {
      transform: translateY(-1px);
    }
    
    .catalog-btn i {
      margin-right: 10px;
      transition: transform 0.3s ease;
    }
    
    .catalog-btn:hover i {
      transform: rotate(90deg);
    }
	
	/* Navigation items */
	.navbar-nav {
		gap: 4px;
	}

	.nav-item {
		position: relative;
	}

	.nav-link {
		color: var(--dark-soft);
		font-weight: 600;
		padding: 12px 18px !important;
		border-radius: 12px;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		position: relative;
		font-size: 15px;
		display: flex;
		align-items: center;
		gap: 12px;
	}
	
	.nav-link i {
		width: 20px;
		text-align: center;
		font-size: 16px;
		transition: transform 0.3s ease;
	}

	.nav-link::before {
		content: '';
		position: absolute;
		bottom: 8px;
		left: 50%;
		width: 0;
		height: 3px;
		background: var(--gradient-primary);
		border-radius: 2px;
		transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
		transform: translateX(-50%);
	}

	.nav-link:hover {
		color: var(--primary);
		background: rgba(239, 68, 68, 0.08);
		transform: translateX(4px);
	}

	.nav-link:hover i {
		transform: scale(1.1);
	}
	
	.kram-product-catalog-navbar a {
       font-size: 17px;
    }

	/* Dropdown toggle arrow */
	.dropdown-toggle[aria-expanded="true"]::after {
		transform: rotate(180deg);
	}

	.dropdown-toggle[aria-expanded="true"] {
		color: var(--primary);
		background: rgba(239, 68, 68, 0.08);
	}

	/* Dropdown menu for vertical layout */
	.dropdown-menu {
		position: static !important;
		transform: none !important;
		border: none;
		border-radius: 0;
		padding: 0;
		margin: 0 0 4px 0;
		background: transparent;
		box-shadow: none !important;
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	.dropdown-menu.show {
		max-height: 500px;
	}

	/* Submenu items */
	.dropdown-menu .nav-item {
		padding-left: 20px;
		position: relative;
	}

	.dropdown-menu .nav-item::before {
		content: '';
		position: absolute;
		left: 25px;
		top: 0;
		bottom: 0;
		width: 2px;
		background: linear-gradient(to bottom,rgba(239, 68, 68, 0.3) 0%,rgba(239, 68, 68, 0.1) 100%);
	}

	.dropdown-menu .nav-link {
		font-size: 14px;
		padding: 10px 16px 10px 28px !important;
		font-weight: 500;
		color: #6b7280;
		position: relative;
	}

	.dropdown-menu .nav-link::before {
		content: '';
		position: absolute;
		left: 7px;
		top: 50%;
		transform: translateY(-50%);
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: rgba(239, 68, 68, 0.4);
		transition: all 0.3s ease;
	}

	.dropdown-menu .nav-link:hover {
		color: var(--primary);
		background: rgba(239, 68, 68, 0.06);
		transform: translateX(6px);
	}

	.dropdown-menu .nav-link:hover::before {
		background: var(--primary);
		transform: translateY(-50%) scale(1.3);
	}

	/* Animation for dropdown items */
	.dropdown-menu .nav-item {
		animation: slideIn 0.3s ease forwards;
		opacity: 0;
	}

	.dropdown-menu.show .nav-item:nth-child(1) {
		animation-delay: 0.05s;
	}

	.dropdown-menu.show .nav-item:nth-child(2) {
		animation-delay: 0.1s;
	}

	.dropdown-menu.show .nav-item:nth-child(3) {
		animation-delay: 0.15s;
	}

	.dropdown-menu.show .nav-item:nth-child(4) {
		animation-delay: 0.2s;
	}

	.dropdown-menu.show .nav-item:nth-child(5) {
		animation-delay: 0.25s;
	}

	@keyframes slideIn {
		from {
			opacity: 0;
			transform: translateX(-10px);
		}
		to {
			opacity: 1;
			transform: translateX(0);
		}
	}

    /* Premium Offcanvas */
	.offcanvas {
	  border: none;
	  background: rgba(255, 255, 255, 0.9);
	  backdrop-filter: blur(20px);
	  box-shadow: -4px 0 40px rgba(0, 0, 0, 0.12);
	  display: flex;
	  flex-direction: column;
	  justify-content: space-between;
	  border-radius: 0 16px 16px 0;
	  overflow: hidden;
	}

	/* Header */
	.offcanvas-header {
	  background: var(--gradient-primary);
	  color: white;
	  padding: 24px;
	  position: relative;
	}

	.offcanvas-header::before {
	  content: '';
	  position: absolute;
	  top: -50%;
	  right: -50%;
	  width: 200%;
	  height: 200%;
	  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
	  animation: pulse-glow 3s ease-in-out infinite;
	}

	@keyframes pulse-glow {
	  0%, 100% { transform: scale(1); opacity: 0.4; }
	  50% { transform: scale(1.1); opacity: 0.8; }
	}

	.offcanvas-title {
	  font-weight: 800;
	  font-size: 1.6rem;
	  position: relative;
	  z-index: 1;
	}

	.btn-close {
	  filter: brightness(0) invert(1);
	  opacity: 0.8;
	  transition: all 0.3s ease;
	  position: relative;
	  z-index: 1;
	}

	.btn-close:hover {
	  opacity: 1;
	  transform: rotate(90deg);
	}

	/* Body */
	.offcanvas-body {
	  padding: 24px;
	  overflow-y: auto;
	}

	.offcanvas .nav-link {
	  padding: 14px 18px !important;
	  margin: 6px 0;
	  border-left: 4px solid transparent;
	  border-radius: 12px;
	  color: var(--dark-soft);
	  font-weight: 500;
	  display: flex;
	  align-items: center;
	  transition: all 0.3s ease;
	}

	.offcanvas .nav-link i {
	  color: var(--primary);
	  font-size: 1.2rem;
	  width: 26px;
	  text-align: center;
	}

	.offcanvas .nav-link:hover {
	  border-left-color: var(--primary);
	  background: rgba(239, 68, 68, 0.1);
	  color: var(--primary-dark);
	  transform: translateX(4px);
	}

	/* Footer */
	.offcanvas-footer {
	  background: var(--dark-soft);
	  color: white;
	  padding: 16px 24px;
	  text-align: center;
	  border-top: 1px solid rgba(255,255,255,0.1);
	}

	.offcanvas-footer small {
	  font-size: 0.9rem;
	  opacity: 0.8;
	}

	.offcanvas-footer .social-icons a {
	  color: white;
	  margin: 0 8px;
	  font-size: 1.2rem;
	  transition: color 0.3s ease;
	}

	.offcanvas-footer .social-icons a:hover {
	  color: var(--primary-light);
	}
    
    /* Mobile Responsive */
    @media (max-width: 991px) {
      .support-box {
        border-left: none;
        border-top: 4px solid var(--primary);
        text-align: center;
      }
      
      .main-logo svg {
        max-height: 42px;
      }
    }
    
    @media (max-width: 576px) {
      .main-logo svg {
        max-height: 38px;
      }
      
      .icon-btn {
        width: 44px;
        height: 44px;
      }
      
      .icon-btn i {
        font-size: 16px;
      }
      
      .catalog-btn {
        padding: 12px 20px;
        font-size: 14px;
      }
    }
    
    /* Scroll Animation */
    .fade-in {
      animation: fadeIn 0.6s ease-out;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /* Modern Footer Styles */
    .modern-footer {
      background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
      color: #cbd5e1;
      padding-top: 60px;
      position: relative;
      overflow: hidden;
    }
    
    .modern-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, #ef4444, transparent);
    }
    
    .modern-footer::after {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(239, 68, 68, 0.1) 0%, transparent 70%);
      animation: pulse-glow 8s ease-in-out infinite;
    }
    
    .footer-content {
      position: relative;
      z-index: 1;
    }
    
    .footer-logo img {
      max-height: 50px;
      width: auto;
      filter: drop-shadow(0 2px 8px rgba(239, 68, 68, 0.3));
      transition: all 0.3s ease;
    }
    
    .footer-logo:hover svg {
      transform: scale(1.05);
      filter: drop-shadow(0 4px 12px rgba(239, 68, 68, 0.5));
    }
    
    .footer-title {
      color: white;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 40px;
      height: 3px;
      background: var(--gradient-primary);
      border-radius: 2px;
    }
    
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer-links li {
      margin-bottom: 12px;
    }
    
    .footer-links a {
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
    }
    
    .footer-links a::before {
      content: '';
      width: 0;
      height: 2px;
      background: var(--gradient-primary);
      transition: width 0.3s ease;
    }
    
    .footer-links a:hover {
      color: #ef4444;
      transform: translateX(5px);
    }
    
    .footer-links a:hover::before {
      width: 20px;
    }
    
    .footer-description {
      color: #94a3b8;
      font-size: 14px;
      line-height: 1.7;
      margin-top: 15px;
    }
    
    .contact-info {
      margin-top: 20px;
    }
    
    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 15px;
      color: #cbd5e1;
      font-size: 15px;
      transition: all 0.3s ease;
    }
    
    .contact-item:hover {
      color: #ef4444;
      transform: translateX(5px);
    }
    
    .contact-item i {
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(239, 68, 68, 0.1);
      border-radius: 10px;
      color: #ef4444;
      font-size: 16px;
      transition: all 0.3s ease;
    }
    
    .contact-item:hover i {
      background: var(--gradient-primary);
      color: white;
      transform: rotate(8deg);
    }
    
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 20px;
    }
    
    .social-btn {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(239, 68, 68, 0.1);
      border-radius: 12px;
      color: #ef4444;
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      font-size: 18px;
    }
    
    .social-btn:hover {
      background: var(--gradient-primary);
      color: white;
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
    }
    
    .newsletter-box {
      background: rgba(15, 23, 42, 0.5);
      border-radius: 16px;
      padding: 25px;
      border: 1px solid rgba(239, 68, 68, 0.2);
      transition: all 0.3s ease;
    }
    
    .newsletter-box:hover {
      border-color: rgba(239, 68, 68, 0.4);
      box-shadow: 0 8px 30px rgba(239, 68, 68, 0.2);
    }
    
    .newsletter-input {
      margin-top: 15px;
    }
    
    .newsletter-input input {
      flex: 1;
      padding: 12px 18px;
      border: 1px solid rgba(203, 213, 225, 0.2);
      background: rgba(15, 23, 42, 0.5);
      border-radius: 12px;
      color: white;
      font-size: 14px;
      transition: all 0.3s ease;
    }
    
    .newsletter-input input:focus {
      outline: none;
      border-color: #ef4444;
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }
    
    .newsletter-input input::placeholder {
      color: #64748b;
    }
    
    .newsletter-btn {
      padding: 12px 24px;
      background: var(--gradient-primary);
      border: none;
      border-radius: 12px;
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
      white-space: nowrap;
	  text-decoration: none;
	  display: inline-block;
	  text-align: center;
    }
    
    .newsletter-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(239, 68, 68, 0.4);
	  text-decoration: none;
	  color: white;
    }
    
    .footer-bottom {
      margin-top: 50px;
      padding: 25px 0;
      border-top: 1px solid rgba(203, 213, 225, 0.1);
      text-align: center;
      color: #64748b;
      font-size: 14px;
    }
    
    .footer-bottom a {
      color: #ef4444;
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .footer-bottom a:hover {
      color: #dc2626;
      text-decoration: underline;
    }
    
    .payment-methods {
      display: flex;
      justify-content: center;
      gap: 15px;
      margin-top: 15px;
      flex-wrap: wrap;
    }
    
    .payment-icon {
      width: 50px;
      height: 32px;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94a3b8;
      font-size: 20px;
      transition: all 0.3s ease;
      border: 1px solid rgba(203, 213, 225, 0.1);
    }
    
    .payment-icon:hover {
      background: rgba(239, 68, 68, 0.1);
      color: #ef4444;
      border-color: rgba(239, 68, 68, 0.3);
      transform: translateY(-2px);
    }
    
    @media (max-width: 768px) {
      .modern-footer {
        padding-top: 40px;
      }
      
      .footer-title {
        font-size: 16px;
        margin-bottom: 15px;
      }
      
      .newsletter-input {
        flex-direction: column;
      }
      
      .newsletter-btn {
        width: 100%;
      }
      
      .social-links {
        justify-content: center;
      }
    }
	
	/* Product card */
    .product-card-container {
      max-width: 100%;
    }
  
    .product-card-container .product-card {
      background: #ffffff;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 32px rgba(204, 41, 48, 0.08);
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      position: relative;
      border: 1px solid rgba(204, 41, 48, 0.06);
      animation: product-card-fadeInUp 0.6s ease-out;
	  margin: 5px;
    }
  
    .product-card-container .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #cc2930 0%, #ff4d56 100%);
      transform: scaleX(0);
      transition: transform 0.4s ease;
    }
  
  .product-card-container .product-card:hover::before {
    transform: scaleX(1);
  }
  
  .product-card-container .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(204, 41, 48, 0.15);
  }
  
  @keyframes product-card-pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  
  .product-card-container .product-image {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    aspect-ratio: 1;
  }
  
  .product-card-container .product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.02) 100%);
    pointer-events: none;
  }
  
  .product-card-container .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  
  .product-card-container .product-card:hover .product-image img {
    transform: scale(1.1) rotate(2deg);
  }
  
  .product-card-container .product-info {
    padding: 24px 20px;
  }
  
  .product-card-container .product-title {
    margin-bottom: 12px;
  }
  
  .sportpanorama-title {
    color: #1f2937;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: color 0.3s ease;
    display: block;
    line-height: 1.3;
  }
  
  .sportpanorama-title:hover {
    color: #cc2930;
  }
  
  .product-card-container .product-price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
  }
  
  .product-card-container .price-current {
    font-weight: 800;
    font-size: 26px;
    background: linear-gradient(135deg, #cc2930 0%, #ff4d56 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
  }
  
  .product-card-container .price-old {
    font-size: 16px;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 500;
  }
  
  .product-card-container .product-actions {
    display: flex;
    gap: 10px;
  }
  
  .product-btn {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 16px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }
  
  .product-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }
  
  .product-btn:hover::before {
    transform: translateX(100%);
  }
  
  .product-btn-primary {
    background: linear-gradient(135deg, #cc2930 0%, #ff4d56 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(204, 41, 48, 0.25);
  }
  
  .product-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 41, 48, 0.35);
  }
  
 .product-btn-primary:active {
    transform: translateY(0);
  }
  
  .product-btn i {
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .product-card-container {
      max-width: 100%;
    }
    
    .product-card-container .product-title a {
      font-size: 16px;
    }
    
    .product-card-container .price-current {
      font-size: 22px;
    }
  }
  
  @keyframes product-card-fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Product Gallery Styles */
      .product-gallery {
          border-radius: 12px;
          overflow: hidden;
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
          position: relative;
          background: white;
      }
      
      .kram-product-view-slideshow {
          cursor: zoom-in;
      }
      
      .kram-product-view-slideshow .carousel-item img {
          width: 100%;
          display: block;
          transition: transform 0.3s ease;
      }
      
      .kram-product-view-slideshow:hover .carousel-item img {
          transform: scale(1.02);
      }
      
      .carousel-control-prev,
      .carousel-control-next {
          width: 50px;
          height: 50px;
          background: rgba(216, 12, 39, 0.8);
          border-radius: 50%;
          top: 50%;
          transform: translateY(-50%);
          opacity: 0.8;
      }
      
      .carousel-control-prev {
          left: 15px;
      }
      
      .carousel-control-next {
          right: 15px;
      }
      
      .carousel-control-prev:hover,
      .carousel-control-next:hover {
          opacity: 1;
          background: #d80c27;
      }
      
      .zoom-hint {
          position: absolute;
          top: 15px;
          left: 15px;
          background: rgba(0, 0, 0, 0.6);
          color: white;
          padding: 8px 15px;
          border-radius: 20px;
          font-size: 0.85rem;
          display: flex;
          align-items: center;
          gap: 8px;
          z-index: 10;
      }
      
      /* Fullscreen Image Viewer Modal */
      .image-viewer-modal {
          display: none;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background: rgba(0, 0, 0, 0.95);
          z-index: 9999;
          justify-content: center;
          align-items: center;
      }
      
      .image-viewer-modal.active {
          display: flex;
      }
      
      .viewer-content {
          position: relative;
          max-width: 90%;
          max-height: 90%;
          display: flex;
          align-items: center;
          justify-content: center;
      }
      
      .viewer-image {
          max-width: 100%;
          max-height: 90vh;
          object-fit: contain;
          border-radius: 8px;
      }
      
      .viewer-close {
          position: absolute;
          top: 20px;
          right: 20px;
          width: 50px;
          height: 50px;
          background: rgba(255, 255, 255, 0.2);
          border: 2px solid white;
          border-radius: 50%;
          color: white;
          font-size: 1.5rem;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.3s ease;
          z-index: 10000;
      }
      
      .viewer-close:hover {
          background: #d80c27;
          transform: rotate(90deg);
      }
      
      .viewer-nav {
          position: absolute;
          top: 50%;
          transform: translateY(-50%);
          width: 50px;
          height: 50px;
          background: rgba(255, 255, 255, 0.2);
          border: 2px solid white;
          border-radius: 50%;
          color: white;
          font-size: 1.5rem;
          cursor: pointer;
          display: flex;
          align-items: center;
          justify-content: center;
          transition: all 0.3s ease;
      }
      
      .viewer-nav:hover {
          background: #d80c27;
      }
      
      .viewer-prev {
          left: 20px;
      }
      
      .viewer-next {
          right: 20px;
      }
      
      .viewer-counter {
          position: absolute;
          bottom: 20px;
          left: 50%;
          transform: translateX(-50%);
          background: rgba(0, 0, 0, 0.7);
          color: white;
          padding: 10px 20px;
          border-radius: 25px;
          font-size: 0.9rem;
      }
      
      .product-info h1 {
          font-weight: 700;
          margin-bottom: .5rem;
      }
      
      .product-price {
          font-size: 2rem;
          color: #d80c27;
          font-weight: 700;
          margin: .75rem 0;
      }
      
      .old-price {
          font-size: 1.5rem;
          color: #6c757d;
          text-decoration: line-through;
          margin-left: 1rem;
      }
      
      .stock-badge {
          background: #28a745;
          color: white;
          padding: 0.5rem 1rem;
          border-radius: 20px;
          font-weight: 600;
          display: inline-block;
          margin: 1rem 0;
      }
      
      .kram-product-view-btn {
          font-weight: 600;
          border-radius: 10px;
          padding: 1rem 2rem;
          font-size: 1.1rem;
          font-weight: 600;
          gap: 10px;
      }
      
      .sect-divider {
          margin: 10px 0;
          border-bottom: 1px solid #eaeaea;
      }
      
      .specs-table th {
          width: 35%;
          font-weight: 600;
          vertical-align: top;
          padding-bottom: .5rem;
      }
      
      /* Info Cards Styles */
      .info-cards-section {
          margin-top: 3rem;
      }
      
      .info-card {
          background: white;
          border-radius: 12px;
          padding: 1.5rem;
          margin-bottom: 1.5rem;
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
          border-left: 4px solid #d80c27;
          transition: all 0.3s ease;
      }
      
      .info-card:hover {
          transform: translateY(-3px);
          box-shadow: 0 6px 25px rgba(216, 12, 39, 0.2);
      }
      
      .info-card-header {
          font-size: 1.25rem;
          font-weight: 700;
          color: #212529;
          margin-bottom: 1rem;
          display: flex;
          align-items: center;
          gap: 10px;
      }
      
      .info-card-icon {
          width: 45px;
          height: 45px;
          background: linear-gradient(135deg, #d80c27, #ff1a3d);
          border-radius: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          color: white;
          font-size: 1.2rem;
          flex-shrink: 0;
      }
      
      .info-card-body {
          color: #495057;
          line-height: 1.6;
      }
      
      .info-card-body p {
          margin-bottom: 0.75rem;
      }
      
      .info-card-body p:last-child {
          margin-bottom: 0;
      }
      
      .info-card-body strong {
          color: #d80c27;
          font-weight: 600;
      }
      
      .info-highlight {
          background: #fff5f5;
          padding: 0.75rem 1rem;
          border-radius: 8px;
          margin-top: 0.75rem;
          border-left: 3px solid #d80c27;
      }
	  
	  section.container.kram-product-view-container {
		margin-top: 30px;
	}
      
      @media (max-width: 768px) {
          .viewer-nav {
              width: 40px;
              height: 40px;
          }
          
          .viewer-prev {
              left: 10px;
			  z-index: 999;
          }
          
          .viewer-next {
              right: 15px;
          }
      
          .carousel-control-prev,
          .carousel-control-next {
              width: 40px;
              height: 40px;
          }
      
          .info-cards-section {
              margin-top: 2rem;
          }
      }
	  
	 /* Sp hero wrapper */
  .sp-hero-wrapper * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
  }
  
  .sp-hero-wrapper {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      overflow-x: hidden;
  }
  
  .sp-hero-container {
      display: flex;
      margin: 0 auto;
      padding: 20px;
      gap: 20px;
  }
  
  .sp-hero-section {
      position: relative;
      flex: 3;
      min-height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #d80c27 0%, #a0051b 50%, #7a0414 100%);
      overflow: hidden;
      padding: 30px 20px;
      border-radius: 20px;
  }
  
  .sp-side-blocks {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 20px;
  }
  
  .sp-side-block {
      flex: 1;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .sp-side-block:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  }
  
  .sp-side-block.bicycles {
      background: linear-gradient(135deg, #dd3b41 0%, #87051d 100%);
  }
  
  .sp-side-block.skis {
      background: linear-gradient(135deg, #87051d 0%, #dd3b41 100%);
  }
  
  .sp-side-block-content {
      position: relative;
      z-index: 10;
      text-align: center;
      color: white;
      padding: 20px;
  }
  
  .sp-side-block-title {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  }
  
  .sp-side-block-text {
      font-size: 14px;
      opacity: 0.9;
      line-height: 1.5;
      max-width: 200px;
      margin: 0 auto;
  }
  
  /* Animated gradient orbs for main hero */
  .sp-hero-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.4;
      animation: sp-hero-float 15s ease-in-out infinite;
  }
  
  .sp-hero-orb-1 {
      width: 250px;
      height: 250px;
      background: rgba(255, 255, 255, 0.3);
      top: -50px;
      left: -50px;
      animation-delay: 0s;
  }
  
  .sp-hero-orb-2 {
      width: 200px;
      height: 200px;
      background: rgba(216, 12, 39, 0.4);
      bottom: -50px;
      right: -50px;
      animation-delay: 3s;
  }
  
  .sp-hero-orb-3 {
      width: 180px;
      height: 180px;
      background: rgba(255, 50, 80, 0.3);
      top: 50%;
      right: 10%;
      animation-delay: 6s;
  }
  
  /* Animated orbs for side blocks */
  .sp-side-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
      opacity: 0.3;
      animation: sp-side-float 12s ease-in-out infinite;
  }
  
  /* Bicycles block orbs */
  .sp-side-block.bicycles .sp-side-orb-1 {
      width: 120px;
      height: 120px;
      background: rgba(255, 255, 255, 0.25);
      top: -30px;
      left: -30px;
      animation-delay: 0s;
  }
  
  .sp-side-block.bicycles .sp-side-orb-2 {
      width: 100px;
      height: 100px;
      background: rgba(42, 82, 152, 0.4);
      bottom: -20px;
      right: -20px;
      animation-delay: 4s;
  }
  
  .sp-side-block.bicycles .sp-side-orb-3 {
      width: 80px;
      height: 80px;
      background: rgba(30, 60, 114, 0.3);
      top: 30%;
      right: 20%;
      animation-delay: 2s;
  }
  
  /* Skis block orbs */
  .sp-side-block.skis .sp-side-orb-1 {
      width: 120px;
      height: 120px;
      background: rgba(255, 255, 255, 0.25);
      top: -30px;
      right: -30px;
      animation-delay: 1s;
  }
  
  .sp-side-block.skis .sp-side-orb-2 {
      width: 100px;
      height: 100px;
      background: rgba(61, 214, 61, 0.4);
      bottom: -20px;
      left: -20px;
      animation-delay: 3s;
  }
  
  .sp-side-block.skis .sp-side-orb-3 {
      width: 80px;
      height: 80px;
      background: rgba(15, 155, 15, 0.3);
      top: 40%;
      left: 20%;
      animation-delay: 5s;
  }
  
  @keyframes sp-hero-float {
      0%, 100% {
          transform: translate(0, 0) scale(1);
      }
      33% {
          transform: translate(20px, -20px) scale(1.1);
      }
      66% {
          transform: translate(-15px, 15px) scale(0.9);
      }
  }
  
  @keyframes sp-side-float {
      0%, 100% {
          transform: translate(0, 0) scale(1);
      }
      33% {
          transform: translate(15px, -15px) scale(1.05);
      }
      66% {
          transform: translate(-10px, 10px) scale(0.95);
      }
  }
  
  /* Mountain layers for main hero */
  .sp-hero-mountains {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }
  
  .sp-hero-mountain-layer {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100%;
  }
  
  .sp-hero-mountain-back {
      clip-path: polygon(
          0% 100%, 0% 65%, 
          15% 55%, 25% 60%, 35% 50%, 
          45% 55%, 55% 45%, 65% 50%, 
          75% 40%, 85% 45%, 100% 35%, 
          100% 100%
      );
      background: rgba(0, 0, 0, 0.1);
      transform: translateY(0);
      animation: sp-hero-parallax-back 20s ease-in-out infinite;
  }
  
  .sp-hero-mountain-mid {
      clip-path: polygon(
          0% 100%, 0% 75%, 
          10% 70%, 20% 65%, 30% 70%, 
          40% 60%, 50% 65%, 60% 55%, 
          70% 60%, 80% 50%, 90% 55%, 100% 45%, 
          100% 100%
      );
      background: rgba(0, 0, 0, 0.15);
      animation: sp-hero-parallax-mid 15s ease-in-out infinite;
  }
  
  .sp-hero-mountain-front {
      clip-path: polygon(
          0% 100%, 0% 85%, 
          15% 80%, 25% 85%, 35% 75%, 
          45% 80%, 55% 70%, 65% 75%, 
          75% 65%, 85% 70%, 100% 60%, 
          100% 100%
      );
      background: rgba(0, 0, 0, 0.2);
      animation: sp-hero-parallax-front 10s ease-in-out infinite;
  }
  
  /* Mini mountain layers for side blocks */
  .sp-side-mountains {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
  }
  
  .sp-side-mountain-layer {
      position: absolute;
      bottom: 0;
      width: 100%;
      height: 100%;
  }
  
  /* Bicycles block mountains */
  .sp-side-block.bicycles .sp-side-mountain-back {
      clip-path: polygon(
          0% 100%, 0% 75%, 
          20% 70%, 40% 75%, 60% 65%, 
          80% 70%, 100% 60%, 100% 100%
      );
      background: rgba(0, 0, 0, 0.1);
      animation: sp-side-parallax-back 18s ease-in-out infinite;
  }
  
  .sp-side-block.bicycles .sp-side-mountain-front {
      clip-path: polygon(
          0% 100%, 0% 85%, 
          30% 80%, 50% 85%, 70% 75%, 
          90% 80%, 100% 70%, 100% 100%
      );
      background: rgba(0, 0, 0, 0.15);
      animation: sp-side-parallax-front 12s ease-in-out infinite;
  }
  
  /* Skis block mountains */
  .sp-side-block.skis .sp-side-mountain-back {
      clip-path: polygon(
          0% 100%, 0% 70%, 
          25% 65%, 50% 70%, 75% 60%, 
          100% 65%, 100% 100%
      );
      background: rgba(0, 0, 0, 0.1);
      animation: sp-side-parallax-back 16s ease-in-out infinite;
  }
  
  .sp-side-block.skis .sp-side-mountain-front {
      clip-path: polygon(
          0% 100%, 0% 80%, 
          35% 75%, 65% 80%, 100% 70%, 
          100% 100%
      );
      background: rgba(0, 0, 0, 0.15);
      animation: sp-side-parallax-front 14s ease-in-out infinite;
  }
  
  @keyframes sp-hero-parallax-back {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-10px); }
  }
  
  @keyframes sp-hero-parallax-mid {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-20px); }
  }
  
  @keyframes sp-hero-parallax-front {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-30px); }
  }
  
  @keyframes sp-side-parallax-back {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-8px); }
  }
  
  @keyframes sp-side-parallax-front {
      0%, 100% { transform: translateX(0); }
      50% { transform: translateX(-15px); }
  }
  
  /* Content container */
  .sp-hero-content {
      position: relative;
      z-index: 10;
      max-width: 800px;
      width: 100%;
      text-align: center;
      padding: 0 20px;
  }
  
  /* Glassmorphic badge */
  .sp-hero-badge {
      display: inline-block;
      padding: 8px 20px;
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      color: white;
      font-size: 0.85rem;
      font-weight: 500;
      letter-spacing: 0.5px;
      margin-bottom: 20px;
      animation: sp-hero-fadeInDown 0.8s ease-out;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }
  
  .sp-hero-title {
      font-size: clamp(2rem, 5vw, 3.5rem);
      font-weight: 800;
      color: white;
      margin-bottom: 18px;
      line-height: 1.1;
      animation: sp-hero-fadeInUp 0.8s ease-out 0.2s backwards;
      text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
      letter-spacing: -0.02em;
  }
  
  .sp-hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.2rem);
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 30px;
      line-height: 1.5;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
      animation: sp-hero-fadeInUp 0.8s ease-out 0.4s backwards;
      text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
      font-weight: 400;
  }
  
  /* Floating particles for main hero */
  .sp-hero-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
  }
  
  .sp-hero-particle {
      position: absolute;
      width: 3px;
      height: 3px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      animation: sp-hero-rise 15s linear infinite;
  }
  
  .sp-hero-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
  .sp-hero-particle:nth-child(2) { left: 25%; animation-delay: 2s; }
  .sp-hero-particle:nth-child(3) { left: 40%; animation-delay: 4s; }
  .sp-hero-particle:nth-child(4) { left: 55%; animation-delay: 1s; }
  .sp-hero-particle:nth-child(5) { left: 70%; animation-delay: 3s; }
  .sp-hero-particle:nth-child(6) { left: 85%; animation-delay: 5s; }
  
  /* Floating particles for side blocks */
  .sp-side-particles {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
      z-index: 1;
  }
  
  .sp-side-particle {
      position: absolute;
      width: 2px;
      height: 2px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 50%;
      animation: sp-side-rise 12s linear infinite;
  }
  
  .sp-side-block.bicycles .sp-side-particle:nth-child(1) { left: 15%; animation-delay: 0s; }
  .sp-side-block.bicycles .sp-side-particle:nth-child(2) { left: 45%; animation-delay: 3s; }
  .sp-side-block.bicycles .sp-side-particle:nth-child(3) { left: 75%; animation-delay: 6s; }
  
  .sp-side-block.skis .sp-side-particle:nth-child(1) { left: 25%; animation-delay: 1s; }
  .sp-side-block.skis .sp-side-particle:nth-child(2) { left: 55%; animation-delay: 4s; }
  .sp-side-block.skis .sp-side-particle:nth-child(3) { left: 85%; animation-delay: 7s; }
  
  @keyframes sp-hero-rise {
      0% {
          bottom: -10%;
          opacity: 0;
      }
      10% {
          opacity: 1;
      }
      90% {
          opacity: 1;
      }
      100% {
          bottom: 110%;
          opacity: 0;
      }
  }
  
  @keyframes sp-side-rise {
      0% {
          bottom: -10%;
          opacity: 0;
      }
      10% {
          opacity: 1;
      }
      90% {
          opacity: 1;
      }
      100% {
          bottom: 110%;
          opacity: 0;
      }
  }
  
  @keyframes sp-hero-fadeInDown {
      from {
          opacity: 0;
          transform: translateY(-20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  @keyframes sp-hero-fadeInUp {
      from {
          opacity: 0;
          transform: translateY(20px);
      }
      to {
          opacity: 1;
          transform: translateY(0);
      }
  }
  
  /* Responsive design */
  @media (max-width: 1024px) {
      .sp-hero-container {
          flex-direction: column;
      }
      
      .sp-side-blocks {
          flex-direction: row;
      }
      
      .sp-side-block {
          min-height: 200px;
      }
  }
  
  @media (max-width: 768px) {
      .sp-hero-section {
          min-height: 350px;
          padding: 25px 15px;
      }
  
      .sp-hero-badge {
          font-size: 0.8rem;
          padding: 6px 16px;
          margin-bottom: 15px;
      }
  
      .sp-hero-title {
          margin-bottom: 15px;
      }
  
      .sp-hero-subtitle {
          margin-bottom: 20px;
      }
  
      .sp-side-blocks {
          flex-direction: column;
      }
      
      .sp-side-block {
          min-height: 150px;
      }
      
      .sp-side-block-title {
          font-size: 20px;
      }
  }
  
  @media (max-width: 480px) {
      .sp-hero-mountain-back, .sp-hero-mountain-mid, .sp-hero-mountain-front,
      .sp-side-mountain-back, .sp-side-mountain-front {
          animation: none;
      }
      
      .sp-hero-container {
          padding: 15px;
      }
  }