/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary-color: #87CEEB; /* Sky Blue */
    --secondary-color: #ffffff; /* White */
    --accent-color: #4A90E2;
    --text-dark: #333;
    --text-light: #666;
    --gradient: linear-gradient(135deg, #87CEEB 0%, #4A90E2 100%);
}

/* Floating Tag Animation */
.floating-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #5a8de0, #87CEEB);
    color: white;
    padding: 10px;
    border-radius: 10px;
    transform: rotate(10deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite alternate;
    z-index: 3;
}

.floating-tag span {
    display: block;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    line-height: 1.2;
}

/* Header Styles */
.header-section {
    position: relative;
    z-index: 1000;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color) !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 2rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: pulse 2s infinite;
}

.discount-percentage {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    line-height: 1;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    position: relative;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-color) !important;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f0f6ff 0%, #e0f0ff 50%, #d8ebff 100%);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.15) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 120%;
    height: 30%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1) 0%, transparent 80%);
    border-radius: 50%;
    filter: blur(20px);
    animation: float 8s ease-in-out infinite alternate;
}

/* Decorative elements */
.hero-section .decor-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.05;
    filter: blur(50px);
    z-index: 1;
}

.hero-section .decor-circle:nth-child(1) {
    top: -50px;
    left: 20%;
    width: 200px;
    height: 200px;
    animation: pulsate 8s ease-in-out infinite;
}

.hero-section .decor-circle:nth-child(2) {
    bottom: -100px;
    right: 10%;
    width: 300px;
    height: 300px;
    animation: pulsate 12s ease-in-out infinite reverse;
}

@keyframes pulsate {
    0%, 100% { transform: scale(0.8); opacity: 0.05; }
    50% { transform: scale(1.1); opacity: 0.08; }
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInLeft 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding-right: 30px;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.hero-title .text-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-bottom: 5px;
}

.hero-title .letters {
    display: inline-block;
    background: linear-gradient(45deg, #5a8de0 0%, #87CEEB 50%, #4A90E2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    transform-origin: 0 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.5s forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-btn {
    padding: 18px 45px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(45deg, #5a8de0 0%, #87CEEB 50%, #4A90E2 100%);
    border: none;
    border-radius: 50px;
    color: white;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3), 0 0 0 0 rgba(135, 206, 235, 0.5);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease-out 0.7s forwards;
    z-index: 2;
}

.hero-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.4), 0 0 30px rgba(135, 206, 235, 0.3);
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.hero-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid transparent;
    background: linear-gradient(45deg, #5a8de0, #87CEEB) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-btn:hover::after {
    opacity: 1;
}

.hero-image {
    position: relative;
    z-index: 2;
    padding: 25px;
    animation: slideInRight 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    perspective: 1000px;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 2px dashed rgba(135, 206, 235, 0.3);
    border-radius: 25px;
    z-index: -1;
    animation: rotate 20s linear infinite reverse;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12), 0 15px 40px rgba(135, 206, 235, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: float 5s ease-in-out infinite;
    transform-style: preserve-3d;
    filter: contrast(1.05) brightness(1.05);
    border: 5px solid white;
}

.hero-image:hover img {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15), 0 20px 50px rgba(135, 206, 235, 0.3);
    filter: contrast(1.1) brightness(1.08);
}

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

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Categories Section */
.categories-section {
    padding: 80px 0;
    background: var(--secondary-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
}

/* Decorative elements */
.category-decor {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    opacity: 0.5;
}

.decor-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.3), rgba(74, 144, 226, 0.3));
    top: -150px;
    left: -150px;
    animation: float-slow 8s infinite alternate ease-in-out;
}

.decor-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(45deg, rgba(135, 206, 235, 0.2), rgba(100, 180, 255, 0.2));
    bottom: -100px;
    right: -100px;
    animation: float-slow 10s infinite alternate-reverse ease-in-out;
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.slider-controls {
    display: flex;
    gap: 15px;
}

.slider-control {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-control:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(74, 144, 226, 0.3);
}

.slider-control i {
    font-size: 1rem;
}

/* Categories Slider */
.categories-slider {
    display: flex;
    gap: 25px;
    position: relative;
    z-index: 2;
    padding: 10px;
    margin: 0 -10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    perspective: 1000px;
}

.categories-slider::-webkit-scrollbar {
    display: none;
}

/* Category Card */
.category-card {
    flex: 0 0 300px;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    perspective: 1000px;
    transform-style: preserve-3d;
}

.card-content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
}

.category-card:hover .card-content {
    box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
    transform: translateY(-15px) rotateX(5deg) rotateY(-5deg);
}

.img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0) 60%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover .img-wrapper::before {
    opacity: 1;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.5s ease;
}

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

.category-info {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.category-info h3 {
    margin: 0 0 8px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.category-card:hover .category-info h3 {
    transform: translateY(-3px);
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.item-count {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 15px;
    transition: transform 0.4s ease;
}

.category-card:hover .item-count {
    transform: translateY(-3px);
}

.category-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(10px);
}

.category-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover .category-link i {
    transform: translateX(5px);
}

/* Slider Pagination */
.slider-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.pagination-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(135, 206, 235, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    width: 30px;
    border-radius: 10px;
    background: var(--gradient);
}

.pagination-dot:hover:not(.active) {
    background-color: rgba(135, 206, 235, 0.6);
}

/* Float animation for decorative elements */
@keyframes float-slow {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.category-card h3 {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    text-align: center;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.category-card:hover h3 {
    transform: translateY(0);
}

/* Deal Section */
.deal-section {
    padding: 80px 0;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
    color: white;
}

.deal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.deal-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.deal-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 30px rgba(255, 255, 255, 0.8); }
}

.discount-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 20px 40px;
    border-radius: 50px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.discount-percentage {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.discount-text {
    font-size: 1.2rem;
    font-weight: 600;
}

.deal-btn {
    padding: 15px 50px;
    font-size: 1.2rem;
    font-weight: 600;
    background: white;
    color: var(--accent-color);
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.deal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: #f0f8ff;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(135, 206, 235, 0.3);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.product-card h4 {
    padding: 20px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-card .price {
    padding: 0 20px 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient);
    opacity: 0;
    transition: all 0.3s ease;
}

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

/* Best Offer Section */
.best-offer-section {
    padding: 80px 0;
    background: white;
}

.offer-image-main {
    position: relative;
    animation: slideInLeft 1s ease-out;
}

.offer-image-main img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
}

.offer-image-main:hover img {
    transform: scale(1.05);
}

.offer-content {
    padding: 40px 0;
    animation: slideInRight 1s ease-out;
}

.offer-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.offer-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.offer-images {
    display: flex;
    gap: 20px;
}

.offer-images img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.offer-images img:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.3);
}

/* Featured Section */
.featured-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e6f3ff 100%);
}

.featured-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
    animation: fadeInUp 0.6s ease-out;
}

.featured-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(135, 206, 235, 0.4);
}

.featured-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.featured-card:hover img {
    transform: scale(1.15);
}

.featured-card h4 {
    padding: 25px 20px 10px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
}

.featured-card .price {
    padding: 0 20px 25px;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Best Selling Section */
.bestselling-section {
    padding: 80px 0;
    background: white;
}

.bestselling-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    cursor: pointer;
}

.bestselling-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(135, 206, 235, 0.3);
}

.bestselling-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.bestselling-card h4 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
}

.bestselling-card .price {
    padding: 0 20px 20px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.bestseller-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    animation: pulse 2s infinite;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9ff;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(135, 206, 235, 0.3);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: all 0.5s ease;
}

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

.blog-content {
    padding: 25px;
}

.blog-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Partners Section */
.partners-section {
    padding: 80px 0;
    background: white;
}

.partners-slider {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.partner-logo {
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    cursor: pointer;
    opacity: 0.7;
}

.partner-logo:hover {
    color: var(--accent-color);
    transform: scale(1.2);
    opacity: 1;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 0;
}

.footer-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-widget h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-widget p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #bbb;
}

.footer-widget ul {
    list-style: none;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    color: white;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(135, 206, 235, 0.3);
}

.footer-bottom {
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #444;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .categories-slider {
        flex-direction: column;
        align-items: center;
    }
    
    .category-card {
        min-width: 100%;
        max-width: 300px;
    }
    
    .offer-images {
        justify-content: center;
    }
    
    .partners-slider {
        justify-content: center;
    }
    
    .partner-logo {
        font-size: 3rem;
    }
}

/* Scroll Animations */
@keyframes slideInFromLeft {
    from { opacity: 0; transform: translateX(-100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInFromRight {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    animation: fadeIn 0.8s ease-in-out forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}
