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

:root {
    /* Color Palette */
    --primary-color: #e91e63;
    --secondary-color: #ff6b9d;
    --accent-color: #4ecdc4;
    --gold-color: #ffd700;
    --purple-color: #9c27b0;
    --orange-color: #ff9800;
    --green-color: #4caf50;
    --dark-color: #2c3e50;
    --light-color: #ecf0f1;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #e91e63 0%, #ff6b9d 100%);
    --gradient-secondary: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffb300 100%);
    --gradient-purple: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Design */
.logo-design {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-icon {
    position: relative;
    width: 50px;
    height: 50px;
}

.lokum-stack {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lokum-piece {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

.lokum-piece.piece-1 {
    background: var(--gradient-primary);
    top: 8px;
    left: 17px;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.lokum-piece.piece-2 {
    background: var(--gradient-gold);
    top: 18px;
    left: 17px;
    animation-delay: 1s;
    transform: rotate(0deg);
}

.lokum-piece.piece-3 {
    background: var(--gradient-secondary);
    top: 28px;
    left: 17px;
    animation-delay: 2s;
    transform: rotate(15deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.brand-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-color);
    letter-spacing: 2px;
    margin-top: -2px;
    text-transform: uppercase;
}

/* Logo Hover Effects */
.logo-design {
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo-design:hover .lokum-piece {
    animation-duration: 1s;
}

.logo-design:hover .brand-name {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-design:hover .brand-subtitle {
    color: var(--primary-color);
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(var(--rotation, 0deg)); 
    }
    50% { 
        transform: translateY(-3px) rotate(var(--rotation, 0deg)); 
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 1rem 0;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.8rem 1.5rem;
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(233, 30, 99, 0.05);
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.dropdown-menu a:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-btn {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 50px !important;
    box-shadow: var(--shadow);
    transition: all 0.3s ease !important;
}

.cta-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: var(--shadow-hover) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.highlight {
    color: var(--gold-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold-color);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Hero Image */
.hero-image {
    flex: 1;
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-hero-image {
    position: relative;
    width: 420px;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    transition: all 0.5s ease;
    border: 8px solid rgba(255, 255, 255, 0.8);
}

.main-hero-image:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.main-hero-image:hover .hero-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(233, 30, 99, 0.05) 0%,
        rgba(255, 107, 157, 0.1) 30%,
        rgba(78, 205, 196, 0.05) 70%,
        transparent 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-hero-image:hover .image-overlay {
    opacity: 1;
}

.quality-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.main-hero-image:hover .quality-badge {
    transform: translateY(0);
}

.quality-badge i {
    color: var(--gold-color);
    font-size: 1.1rem;
    animation: pulse 2s infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
    transition: all 0.3s ease;
    cursor: pointer;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.card-1 {
    top: 8%;
    left: 2%;
    animation-delay: 0s;
}

.card-2 {
    top: 12%;
    right: 2%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 8%;
    left: 12%;
    animation-delay: 4s;
}

.mini-stat {
    text-align: center;
    min-width: 80px;
}

.mini-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.mini-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-highlight {
    text-align: center;
    min-width: 130px;
}

.price-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.price-label {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-15px) rotate(2deg); }
    66% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--light-color);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Facility Section */
.facility {
    padding: 6rem 0;
    background: var(--white);
}

.facility-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: center;
}

.facility-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
}

.facility-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.facility-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.facility-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.facility-text p {
    color: #666;
    line-height: 1.6;
}

.facility-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.facility-stat {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
}

.facility-stat:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.facility-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--white);
}

.facility-stat .stat-info .stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.facility-stat .stat-info .stat-label {
    font-size: 0.9rem;
    color: #666;
}

/* Certificates Section */
.certificates {
    padding: 6rem 0;
    background: var(--light-color);
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.certificate-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certificate-card:hover::before {
    transform: scaleX(1);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.certificate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow);
}

.certificate-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.certificate-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.certificate-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Packaging Section */
.packaging {
    padding: 6rem 0;
    background: var(--white);
}

.packaging-content {
    margin-top: 3rem;
}

.packaging-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.packaging-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.packaging-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.packaging-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    position: relative;
}

.bulk-bg { background: var(--gradient-primary); }
.retail-bg { background: var(--gradient-secondary); }
.custom-bg { background: var(--gradient-purple); }

.packaging-info {
    padding: 2rem;
}

.packaging-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.packaging-info p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.packaging-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.packaging-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.packaging-features i {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.packaging-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.option-card {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.option-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.option-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.option-card h4 i {
    color: var(--primary-color);
}

.option-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Solutions Section */
.solutions {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.solution-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.solution-card:hover::before {
    transform: scaleX(1);
}

.solution-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.solution-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.solution-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding: 0;
}

.solution-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.solution-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.solution-clients {
    background: var(--gradient-secondary);
    color: white;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: var(--light-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.product-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    font-size: 3rem;
}

.rose-bg { background: var(--gradient-primary); }
.lemon-bg { background: var(--gradient-gold); }
.pistachio-bg { background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%); }
.hazelnut-bg { background: linear-gradient(135deg, #8d6e63 0%, #5d4037 100%); }
.pomegranate-bg { background: linear-gradient(135deg, #e91e63 0%, #ad1457 100%); }
.chocolate-bg { background: linear-gradient(135deg, #6d4c41 0%, #3e2723 100%); }

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold-color);
    color: var(--dark-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.product-info p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.old-price {
    font-size: 0.9rem;
    color: #999;
    text-decoration: line-through;
}

.product-detail-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.product-detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    color: var(--white);
}

.product-detail-btn:active {
    transform: scale(0.98);
}

.product-detail-btn i {
    font-size: 0.9rem;
}

.cta-section {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-secondary);
    border-radius: 20px;
    color: var(--white);
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 2rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.about-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.image-placeholder {
    height: 400px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    box-shadow: var(--shadow-hover);
}

.image-placeholder span {
    font-size: 1.2rem;
    margin-top: 1rem;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.contact-card p {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-card span {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Form */
.contact-form {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(233, 30, 99, 0.1);
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: var(--white);
    padding: 0 5px;
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.contact-form .btn-primary {
    grid-column: 1 / -1;
    justify-self: center;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--gold-color);
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    line-height: 1.8;
    color: #bbb;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Payment Security Section */
.payment-security {
    margin-top: 2rem;
}

.payment-security h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.secure-payment-banner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    border: 1px solid #dee2e6;
}

.payment-logo, .security-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 40px;
}

.payment-logo:hover, .security-logo:hover {
    transform: translateY(-2px);
}

.visa-logo {
    background: #1a1f71;
    color: white;
    font-family: 'Arial', sans-serif;
    letter-spacing: 2px;
}

.mastercard-logo {
    background: linear-gradient(135deg, #eb001b, #ff5f00);
    color: white;
    font-weight: 600;
}

.troy-logo {
    background: #00a651;
    color: white;
    font-weight: 600;
    letter-spacing: 1px;
}

.paytr-logo {
    background: linear-gradient(135deg, #0099ff, #0066cc);
    color: white;
    font-weight: 600;
}

.ssl-logo {
    background: linear-gradient(135deg, #ffd700, #ffed4a);
    color: #333;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.75rem;
    border: 2px solid #f39c12;
    position: relative;
    line-height: 1.2;
}

.ssl-logo span {
    font-size: 0.7rem;
    font-weight: 500;
}

.ssl-logo small {
    font-size: 0.6rem;
    font-weight: 400;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--primary-color);
}

/* Desktop Navigation - Hide Mobile Order Button */
@media (min-width: 1024px) {
    .mobile-order-btn {
        display: none !important;
    }
}

/* Tablet Solutions Grid */
@media (max-width: 1024px) and (min-width: 769px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile App-like Design */

/* Mobile Viewport Optimizations */
@viewport {
    width: device-width;
    zoom: 1.0;
}

/* Mobile Navigation Enhancements */
@media (max-width: 768px) {
    /* Enhanced Mobile Navigation */
    .navbar {
        padding: 0.8rem 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu {
        display: none; /* Mobilde nav-menu'yu tamamen gizle */
    }

    /* Mobile navigation için artık dropdown gerekmediği için kaldırıldı */

    .cta-btn {
        background: var(--gradient-primary) !important;
        color: var(--white) !important;
        box-shadow: var(--shadow-hover) !important;
        border: none !important;
    }

    /* Mobilde sipariş butonu görünsün */

    .hamburger {
        display: none; /* Hamburger menüyü mobilde gizle */
    }

    .mobile-order-btn {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.75rem 1.5rem;
        background: var(--gradient-primary);
        color: white;
        border: none;
        border-radius: 25px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .mobile-order-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
        color: white;
    }

    .mobile-order-btn:active {
        transform: scale(0.98);
    }

    /* Mobile Hero Section */
    .hero {
        min-height: 100vh;
        padding: 8rem 0 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        margin-bottom: 2rem;
    }

    .btn-primary, .btn-secondary {
        padding: 1.2rem 2rem;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 25px;
        min-height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .btn-primary:active, .btn-secondary:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        justify-content: center;
        margin-top: 2rem;
    }

    .stat {
        background: rgba(255, 255, 255, 0.1);
        padding: 1rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
    }

    .stat-number {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    /* Mobile Hero Image */
    .hero-image {
        height: 350px;
        margin-top: 2rem;
    }

    .main-hero-image {
        width: 280px;
        height: 280px;
        border-radius: 20px;
        border: 4px solid rgba(255, 255, 255, 0.8);
        transform: rotate(-2deg);
    }

    .floating-card {
        padding: 0.8rem;
    }

    .card-1 {
        top: 5%;
        left: 5%;
    }

    .card-2 {
        top: 8%;
        right: 5%;
    }

    .card-3 {
        bottom: 5%;
        left: 8%;
    }

    .mini-number {
        font-size: 1.2rem;
    }

    .mini-label {
        font-size: 0.7rem;
    }

    .price-text {
        font-size: 1rem;
    }

    .price-label {
        font-size: 0.65rem;
    }

    /* Mobile App-like Sections */
    .container {
        padding: 0 1rem;
    }

    /* Mobile Features */
    .features {
        padding: 3rem 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
        border-radius: 20px;
        margin: 0 0.5rem;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .feature-card:active {
        transform: scale(0.98);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
        font-size: 1.5rem;
    }

    /* Mobile Sections */
    .about-content,
    .contact-content,
    .facility-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .facility {
        padding: 3rem 0;
    }

    .facility-feature {
        margin-bottom: 1rem;
        padding: 1rem;
        border-radius: 15px;
        touch-action: manipulation;
    }

    .facility-feature:active {
        transform: scale(0.99);
    }

    .facility-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .facility-stat {
        padding: 1.5rem;
        border-radius: 15px;
        touch-action: manipulation;
    }

    .facility-stat:active {
        transform: scale(0.98);
    }

    /* Mobile Certificates */
    .certificates {
        padding: 3rem 0;
    }

    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .certificate-card {
        padding: 1.5rem;
        margin: 0;
        border-radius: 20px;
        touch-action: manipulation;
    }

    .certificate-card:active {
        transform: scale(0.98);
    }

    /* Mobile Packaging */
    .packaging {
        padding: 3rem 0;
    }

    .packaging-types {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .packaging-card {
        border-radius: 20px;
        touch-action: manipulation;
    }

    .packaging-card:active {
        transform: scale(0.98);
    }

    .packaging-options {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .option-card {
        padding: 1.5rem;
        border-radius: 15px;
        touch-action: manipulation;
    }

    .option-card:active {
        transform: scale(0.98);
    }

    /* Mobile Solutions */
    .solutions {
        padding: 4rem 0;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
        border-radius: 16px;
        touch-action: manipulation;
    }
    
    .solution-card:active {
        transform: scale(0.98);
    }
    
    .solution-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        border-radius: 16px;
    }

    /* Mobile Products */
    .products {
        padding: 3rem 0;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .product-card {
        border-radius: 20px;
        touch-action: manipulation;
    }

    .product-card:active {
        transform: scale(0.98);
    }

    .product-categories {
        gap: 0.5rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    .category-btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 25px;
        min-height: 44px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .category-btn:active {
        transform: scale(0.95);
    }

    /* Mobile Contact */
    .contact {
        padding: 3rem 0;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        border-radius: 20px;
        gap: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        border-radius: 15px;
        font-size: 1rem;
        min-height: 48px;
        touch-action: manipulation;
    }

    .contact-form .btn-primary {
        min-height: 56px;
        font-size: 1rem;
        border-radius: 25px;
        margin-top: 0.5rem;
    }

    .contact-info {
        gap: 1rem;
    }

    .contact-card {
        padding: 1.5rem;
        border-radius: 20px;
        touch-action: manipulation;
    }

    .contact-card:active {
        transform: scale(0.98);
    }

    /* Mobile Footer */
    .footer {
        padding: 2rem 0 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    /* Mobile Logo Adjustments */
    .logo-design {
        gap: 0.7rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .lokum-piece {
        width: 12px;
        height: 12px;
    }

    .lokum-piece.piece-1 {
        top: 6px;
        left: 14px;
    }

    .lokum-piece.piece-2 {
        top: 14px;
        left: 14px;
    }

    .lokum-piece.piece-3 {
        top: 22px;
        left: 14px;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .brand-subtitle {
        font-size: 0.6rem;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Optimizations */
    .hero {
        padding: 9rem 0 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
        min-height: 52px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }

    .stat {
        padding: 0.8rem;
    }

    /* Compact Feature Cards */
    .feature-card,
    .certificate-card,
    .contact-card {
        padding: 1.2rem;
        margin: 0 0.2rem;
    }

    .feature-icon,
    .certificate-icon,
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    /* Compact Product Cards */
    .product-card {
        margin: 0 0.2rem;
    }

    .product-image {
        height: 160px;
        font-size: 2.5rem;
    }

    .product-info {
        padding: 1.2rem;
    }

    /* Compact Forms */
    .contact-form {
        padding: 1.2rem;
        gap: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
        min-height: 44px;
    }

    /* Facility Stats Grid */
    .facility-stats {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .facility-stat {
        padding: 1.2rem;
    }

    /* Category Buttons */
    .product-categories {
        gap: 0.3rem;
        padding: 0 0.5rem;
    }

    .category-btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        min-height: 40px;
    }

    /* Mobile Bottom Nav Adjustments */
    .mobile-bottom-nav {
        padding: 0.3rem 0;
    }

    .mobile-nav-item {
        padding: 0.4rem;
        min-width: 50px;
    }

    .mobile-nav-item i {
        font-size: 1.1rem;
    }

    .mobile-nav-item span {
        font-size: 0.65rem;
    }

    /* Sticky CTA */
    .mobile-sticky-cta {
        padding: 0.8rem;
        font-size: 0.9rem;
        border-radius: 20px;
        bottom: 70px;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        bottom: 80px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
    }

    /* Compact Spacing */
    .container {
        padding: 0 0.8rem;
    }

    .features,
    .products,
    .certificates,
    .packaging,
    .facility,
    .about,
    .contact {
        padding: 2.5rem 0;
    }

    /* Footer Adjustments */
    .footer {
        padding: 1.5rem 0 1rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    /* Extra Small Screens Logo */
    .brand-name {
        font-size: 1.3rem;
    }

    .brand-subtitle {
        font-size: 0.55rem;
        letter-spacing: 1px;
    }

    .logo-icon {
        width: 35px;
        height: 35px;
    }

    .lokum-piece {
        width: 10px;
        height: 10px;
    }

    .lokum-piece.piece-1 {
        top: 5px;
        left: 12.5px;
    }

    .lokum-piece.piece-2 {
        top: 12.5px;
        left: 12.5px;
    }

    .lokum-piece.piece-3 {
        top: 20px;
        left: 12.5px;
    }

    /* Optimize for very small screens */
    .hero-image {
        height: 250px;
        margin-top: 1.5rem;
    }

    .main-hero-image {
        width: 220px;
        height: 220px;
        border-radius: 15px;
        border: 3px solid rgba(255, 255, 255, 0.8);
        transform: rotate(-1deg);
    }

    .floating-card {
        padding: 0.6rem;
    }

    .mini-number {
        font-size: 1rem;
    }

    .mini-label {
        font-size: 0.6rem;
    }

    .price-text {
        font-size: 0.9rem;
    }

    .price-label {
        font-size: 0.55rem;
    }

    /* Adjust body padding for compact bottom nav */
    body {
        padding-bottom: 70px;
    }
}

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

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

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

/* Scroll animations */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

.slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Loading animation */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Mobile-specific animations */
@keyframes slideInMenu {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

    /* Hide Mobile Elements on Desktop */
    .mobile-bottom-nav,
    .mobile-sticky-cta {
        display: none;
    }

/* Mobile Bottom Navigation */
@media (max-width: 768px) {
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        padding: 0.5rem 0;
        z-index: 1000;
        display: flex;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0.5rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #666;
        min-width: 60px;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-nav-item:active {
        transform: scale(0.95);
        background: rgba(233, 30, 99, 0.1);
    }

    .mobile-nav-item.active {
        color: var(--primary-color);
        background: rgba(233, 30, 99, 0.1);
    }

    .mobile-nav-item i {
        font-size: 1.2rem;
        margin-bottom: 0.2rem;
    }

    .mobile-nav-item span {
        font-size: 0.7rem;
        font-weight: 500;
    }

    /* Adjust body padding for bottom nav */
    body {
        padding-bottom: 80px;
    }

    /* Mobile Sticky Elements */
    .mobile-sticky-cta {
        display: block;
        position: fixed;
        bottom: 90px;
        left: 1rem;
        right: 1rem;
        background: var(--gradient-primary);
        color: var(--white);
        padding: 1rem;
        border-radius: 25px;
        text-align: center;
        font-weight: 600;
        text-decoration: none;
        box-shadow: var(--shadow-hover);
        z-index: 999;
        transform: translateY(100px);
        transition: all 0.3s ease;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    .mobile-sticky-cta.show {
        transform: translateY(0);
    }

    .mobile-sticky-cta:active {
        transform: scale(0.98);
    }

    /* Pull to refresh indicator */
    .pull-refresh {
        position: fixed;
        top: 0;
        left: 50%;
        transform: translateX(-50%) translateY(-100%);
        background: var(--gradient-primary);
        color: var(--white);
        padding: 0.5rem 1rem;
        border-radius: 0 0 15px 15px;
        font-size: 0.9rem;
        z-index: 1001;
        transition: transform 0.3s ease;
    }

    .pull-refresh.show {
        transform: translateX(-50%) translateY(0);
    }

    /* Mobile Optimized WhatsApp Button */
    .whatsapp-btn {
        bottom: 100px !important;
        right: 1rem !important;
        width: 56px !important;
        height: 56px !important;
        font-size: 1.3rem !important;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4) !important;
    }

    /* Mobile Touch Improvements */
    .section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
    }

    /* Mobile CTA Section */
    .cta-section {
        margin: 2rem 0.5rem;
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }

    .cta-section h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-primary,
.cta-section .btn-secondary {
    padding: 1rem 2rem;
    font-size: 1rem;
    border-radius: 25px;
    min-height: 50px;
    white-space: nowrap;
}

.cta-section .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

    /* Mobile Image Placeholder */
    .image-placeholder {
        height: 250px;
        font-size: 2rem;
        border-radius: 20px;
    }

    .image-placeholder span {
        font-size: 1rem;
        margin-top: 0.8rem;
    }

    /* Mobile About Features */
    .about-feature {
        padding: 1rem;
        border-radius: 15px;
        margin-bottom: 0.8rem;
        touch-action: manipulation;
    }

    .about-feature:active {
        transform: scale(0.98);
    }

    /* Mobile Social Links */
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.2rem;
        touch-action: manipulation;
    }

    .social-links a:active {
        transform: scale(0.95);
    }

    /* Mobile Footer Links */
    .footer-section ul li a {
        padding: 0.5rem 0;
        display: block;
        border-radius: 8px;
        transition: all 0.3s ease;
        touch-action: manipulation;
    }

    .footer-section ul li a:active {
        background: rgba(233, 30, 99, 0.1);
        padding-left: 1rem;
    }

    /* Mobile Scroll Indicator */
    .scroll-indicator {
        position: fixed;
        top: 0;
        left: 0;
        height: 3px;
        background: var(--gradient-primary);
        z-index: 1002;
        transition: width 0.1s ease;
    }
} 