{
   margin: 0;
   padding: 0;
   box-sizing: border-box;
}


:root {
   --primary-gradient: linear-gradient(135deg, #FF6B9D 0%, #FFC75F 100%);
   --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   --dark-bg: #0f0f0f;
   --light-bg: #ffffff;
   --accent-purple: #8B5CF6;
   --accent-pink: #EC4899;
   --text-dark: #1f2937;
   --text-light: #f3f4f6;
   --border-color: #e5e7eb;
}


html {
   scroll-behavior: smooth;
}


body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
   color: var(--text-dark);
   overflow-x: hidden;
}


.container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}


/* ==================== HEADER ==================== */
.header-top {
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 12px 0;
   text-align: center;
   color: white;
   font-weight: 500;
   box-shadow: 0 2px 10px rgba(102, 126, 234, 0.1);
}


.phone-contact {
   animation: slideDown 0.6s ease;
}


.navbar {
   background: rgba(255, 255, 255, 0.95);
   backdrop-filter: blur(10px);
   padding: 1.5rem 0;
   position: sticky;
   top: 0;
   z-index: 100;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}


.nav-container {
   display: flex;
   justify-content: space-between;
   align-items: center;
}


.logo-text {
   font-size: 1.8rem;
   font-weight: 800;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   letter-spacing: -1px;
}


.nav-menu {
   display: flex;
   list-style: none;
   gap: 2.5rem;
}


.nav-link {
   text-decoration: none;
   color: var(--text-dark);
   font-weight: 600;
   position: relative;
   transition: color 0.3s ease;
   font-size: 0.95rem;
}


.nav-link::after {
   content: '';
   position: absolute;
   bottom: -8px;
   left: 0;
   width: 0;
   height: 3px;
   background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
   transition: width 0.3s ease;
   border-radius: 2px;
}


.nav-link:hover::after {
   width: 100%;
}


.hamburger {
   display: none;
   flex-direction: column;
   gap: 6px;
   cursor: pointer;
}


.hamburger span {
   width: 25px;
   height: 3px;
   background: var(--text-dark);
   border-radius: 2px;
   transition: all 0.3s ease;
}


/* ==================== HERO SECTION ==================== */
.hero {
   margin-top: 0;
   height: 650px;
   display: flex;
   align-items: center;
   justify-content: center;
}


.hero-carousel {
   width: 100%;
   height: 100%;
   position: relative;
   overflow: hidden;
   border-radius: 0;
}


.carousel-item {
   position: absolute;
   width: 100%;
   height: 100%;
   display: none;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: opacity 0.8s ease;
}


.carousel-item.active {
   display: flex;
   opacity: 1;
   animation: heroFadeIn 0.8s ease;
}


@keyframes heroFadeIn {
   from {
       opacity: 0;
   }
   to {
       opacity: 1;
   }
}


.carousel-content {
   text-align: center;
   color: white;
   z-index: 2;
   padding: 40px 20px;
}


.hero-title {
   font-size: 4rem;
   font-weight: 900;
   margin-bottom: 1rem;
   text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.3);
}


.hero-subtitle {
   font-size: 1.5rem;
   margin-bottom: 2rem;
   text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.2);
}


@keyframes fadeInUp {
   from {
       opacity: 0;
       transform: translateY(30px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}


.fade-in-up {
   animation: fadeInUp 0.7s ease;
}


.cta-button {
   background: rgba(255, 255, 255, 0.95);
   color: var(--accent-purple);
   padding: 15px 40px;
   border: none;
   border-radius: 50px;
   font-size: 1.1rem;
   font-weight: 700;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
   position: relative;
   overflow: hidden;
}


.cta-button::before {
   content: '';
   position: absolute;
   top: 0;
   left: -100%;
   width: 100%;
   height: 100%;
   background: linear-gradient(90deg, var(--accent-purple), var(--accent-pink));
   transition: left 0.3s ease;
   z-index: -1;
   border-radius: 50px;
}


.cta-button:hover {
   color: white;
   transform: translateY(-3px);
   box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}


.cta-button:hover::before {
   left: 0;
}


.carousel-nav {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   background: rgba(255, 255, 255, 0.3);
   color: white;
   border: none;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   font-size: 1.5rem;
   cursor: pointer;
   transition: all 0.3s ease;
   z-index: 10;
   backdrop-filter: blur(5px);
}


.carousel-nav:hover {
   background: rgba(255, 255, 255, 0.6);
   transform: translateY(-50%) scale(1.1);
}


.carousel-nav.prev {
   left: 30px;
}


.carousel-nav.next {
   right: 30px;
}


.carousel-dots {
   position: absolute;
   bottom: 30px;
   left: 50%;
   transform: translateX(-50%);
   display: flex;
   gap: 12px;
   z-index: 10;
}


.dot {
   width: 12px;
   height: 12px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.5);
   cursor: pointer;
   transition: all 0.3s ease;
   border: 2px solid white;
}


.dot.active {
   background: white;
   width: 32px;
   border-radius: 6px;
}


/* ==================== CATCHY SECTION ==================== */
.catchy-section {
   padding: 80px 20px;
   text-align: center;
   background: linear-gradient(135deg, #f8f7ff 0%, #fff5f7 100%);
}


.catchy-title {
   font-size: 3rem;
   font-weight: 900;
   background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   margin-bottom: 1rem;
   animation: slideUp 0.8s ease;
}


.catchy-subtitle {
   font-size: 1.3rem;
   color: #666;
   animation: slideUp 0.8s ease 0.2s both;
}


@keyframes slideUp {
   from {
       opacity: 0;
       transform: translateY(20px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}


@keyframes slideDown {
   from {
       opacity: 0;
       transform: translateY(-20px);
   }
   to {
       opacity: 1;
       transform: translateY(0);
   }
}


/* ==================== PRODUCTS SECTION ==================== */
.products-section {
   padding: 100px 20px;
   background: white;
}


.section-title {
   font-size: 2.8rem;
   font-weight: 900;
   text-align: center;
   margin-bottom: 60px;
   background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}


.categories-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 30px;
   margin-bottom: 40px;
}


.category-card {
   background: white;
   border: 2px solid var(--border-color);
   border-radius: 16px;
   padding: 40px 25px;
   text-align: center;
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


.card-hover {
   cursor: pointer;
}


.card-hover:hover {
   border-color: var(--accent-purple);
   box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
   transform: translateY(-10px);
}


.category-icon {
   font-size: 3rem;
   margin-bottom: 1.5rem;
   display: block;
   animation: bounce 2s infinite;
}


.card-hover:hover .category-icon {
   animation: bounce 1s infinite;
}


@keyframes bounce {
   0%, 100% {
       transform: translateY(0);
   }
   50% {
       transform: translateY(-10px);
   }
}


.category-card h3 {
   font-size: 1.5rem;
   margin-bottom: 0.8rem;
   color: var(--text-dark);
}


.category-card p {
   color: #666;
   line-height: 1.5;
}


/* ==================== FEATURED PRODUCTS ==================== */
.featured-products {
   padding: 100px 20px;
   background: linear-gradient(135deg, #f8f7ff 0%, #fff5f7 100%);
}


.products-carousel {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 25px;
   scroll-behavior: smooth;
}


.product-card {
   background: white;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
   transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
   cursor: pointer;
}


.product-card:hover {
   transform: translateY(-15px);
   box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}


.product-image {
   width: 100%;
   height: 200px;
   display: flex;
   align-items: center;
   justify-content: center;
   position: relative;
   overflow: hidden;
}


.product-image::before {
   content: '🍦';
   font-size: 3rem;
   animation: float 3s ease-in-out infinite;
}


@keyframes float {
   0%, 100% {
       transform: translateY(0px);
   }
   50% {
       transform: translateY(-15px);
   }
}


.product-card h4 {
   padding: 15px 15px 5px;
   font-size: 1.2rem;
   color: var(--text-dark);
}


.product-price {
   padding: 0 15px 15px;
   color: var(--accent-purple);
   font-weight: 600;
   font-size: 0.9rem;
}


/* ==================== ABOUT SECTION ==================== */
.about-section {
   padding: 100px 20px;
   background: white;
}


.about-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items: center;
}


.about-content h2 {
   font-size: 2.5rem;
   font-weight: 900;
   margin-bottom: 1.5rem;
   background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}


.about-content p {
   font-size: 1.1rem;
   color: #666;
   margin-bottom: 1.5rem;
   line-height: 1.8;
}


.about-content .cta-button {
   margin-top: 1.5rem;
}


.about-image {
   position: relative;
}


.image-placeholder {
   width: 100%;
   height: 400px;
   border-radius: 20px;
   box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
   animation: imageSlideIn 0.8s ease;
}


@keyframes imageSlideIn {
   from {
       opacity: 0;
       transform: translateX(50px);
   }
   to {
       opacity: 1;
       transform: translateX(0);
   }
}


@keyframes fadeInLeft {
   from {
       opacity: 0;
       transform: translateX(-30px);
   }
   to {
       opacity: 1;
       transform: translateX(0);
   }
}


@keyframes fadeInRight {
   from {
       opacity: 0;
       transform: translateX(30px);
   }
   to {
       opacity: 1;
       transform: translateX(0);
   }
}


.fade-in-left {
   animation: fadeInLeft 0.8s ease;
}


.fade-in-right {
   animation: fadeInRight 0.8s ease;
}


/* ==================== STATS SECTION ==================== */
.stats-section {
   padding: 80px 20px;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}


.stats-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 40px;
   text-align: center;
}


.stat-card {
   padding: 30px 20px;
   animation: slideUp 0.8s ease;
}


.stat-card:nth-child(2) {
   animation-delay: 0.1s;
}


.stat-card:nth-child(3) {
   animation-delay: 0.2s;
}


.stat-card:nth-child(4) {
   animation-delay: 0.3s;
}


.stat-number {
   font-size: 3rem;
   font-weight: 900;
   margin-bottom: 0.5rem;
   text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}


.stat-card p {
   font-size: 1.1rem;
   opacity: 0.95;
}


/* ==================== FOOTER ==================== */
.footer {
   background: var(--text-dark);
   color: var(--text-light);
   padding: 60px 20px 20px;
}


.footer-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
   margin-bottom: 40px;
}


.footer-section h4 {
   font-size: 1.3rem;
   margin-bottom: 1rem;
   background: linear-gradient(135deg, var(--accent-purple), var(--accent-pink));
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}


.footer-section p {
   color: #999;
   line-height: 1.6;
}


.footer-section ul {
   list-style: none;
}


.footer-section ul li {
   margin-bottom: 0.8rem;
}


.footer-section a {
   color: #999;
   text-decoration: none;
   transition: color 0.3s ease;
}


.footer-section a:hover {
   color: var(--accent-purple);
}


.social-icons {
   display: flex;
   flex-direction: column;
   gap: 0.8rem;
}


.social-link {
   display: inline-block;
   font-weight: 600;
}


.footer-bottom {
   border-top: 1px solid #333;
   padding-top: 20px;
   text-align: center;
   color: #666;
}


/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
   .nav-menu {
       display: none;
   }


   .hamburger {
       display: flex;
   }


   .hero {
       height: 450px;
   }


   .hero-title {
       font-size: 2.5rem;
   }


   .hero-subtitle {
       font-size: 1.1rem;
   }


   .catchy-title {
       font-size: 2rem;
   }


   .section-title {
       font-size: 2rem;
   }


   .about-grid {
       grid-template-columns: 1fr;
       gap: 30px;
   }


   .about-content h2 {
       font-size: 1.8rem;
   }


   .image-placeholder {
       height: 300px;
   }


   .carousel-nav {
       width: 40px;
       height: 40px;
       font-size: 1.2rem;
   }


   .carousel-nav.prev {
       left: 15px;
   }


   .carousel-nav.next {
       right: 15px;
   }


   .stat-number {
       font-size: 2.2rem;
   }
}


@media (max-width: 480px) {
   .hero {
       height: 350px;
   }


   .hero-title {
       font-size: 1.8rem;
   }


   .hero-subtitle {
       font-size: 0.95rem;
   }


   .catchy-title {
       font-size: 1.5rem;
   }


   .catchy-subtitle {
       font-size: 1rem;
   }


   .section-title {
       font-size: 1.5rem;
       margin-bottom: 30px;
   }


   .categories-grid {
       gap: 15px;
   }


   .category-card {
       padding: 25px 15px;
   }


   .category-icon {
       font-size: 2.5rem;
   }


   .products-carousel {
       grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
       gap: 15px;
   }


   .product-image {
       height: 150px;
   }


   .about-content h2 {
       font-size: 1.5rem;
   }


   .stats-grid {
       gap: 20px;
   }


   .stat-number {
       font-size: 1.8rem;
   }
}
