* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Geologica", sans-serif;
}

body {
    font-family: "Geologica", sans-serif;
    background: linear-gradient(270deg, rgba(246, 157, 36, 0.10) 2%, rgba(206, 147, 66, 0.10) 6%, rgba(105, 122, 141, 0.10) 16%, rgba(56, 110, 179, 0.10) 21%, rgba(254, 199, 8, 0.10) 34%, rgba(76, 181, 116, 0.10) 51%, rgba(102, 174, 212, 0.10) 67%, rgba(105, 174, 223, 0.10) 68%, rgba(139, 148, 183, 0.10) 72%, rgba(189, 111, 126, 0.10) 78%, rgba(221, 88, 90, 0.10) 82%, rgba(233, 80, 77, 0.10) 84%, rgba(238, 112, 59, 0.10) 90%, rgba(243, 144, 42, 0.10) 96%, rgba(246, 157, 36, 0.10) 100%), #fff;
}

/* Header Wrapper - Fixed */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Promo Banner */
.promo-banner {
    background: #0d3b66;
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.promo-text {
    font-size: 14px;
    font-weight: 400;
}

.promo-btn {
    background: white;
    color: #0d3b66;
    border: 2px solid white;
    padding: 5px 18px;
    border-radius: 3px;
    font-weight: 600;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s;
}

.promo-btn:hover {
    background: transparent;
    color: white;
}

/* Main Navigation */
.main-nav {
    padding-left: clamp(1.6rem, calc(1.6rem + (56) * ((100vw - 428px) / (1920 - 428))), 5.33333rem);
    padding-right: clamp(1.6rem, calc(1.6rem + (56) * ((100vw - 428px) / (1920 - 428))), 5.33333rem);
    background: linear-gradient(270deg, rgba(246, 157, 36, 0.10) 2%, rgba(206, 147, 66, 0.10) 6%, rgba(105, 122, 141, 0.10) 16%, rgba(56, 110, 179, 0.10) 21%, rgba(254, 199, 8, 0.10) 34%, rgba(76, 181, 116, 0.10) 51%, rgba(102, 174, 212, 0.10) 67%, rgba(105, 174, 223, 0.10) 68%, rgba(139, 148, 183, 0.10) 72%, rgba(189, 111, 126, 0.10) 78%, rgba(221, 88, 90, 0.10) 82%, rgba(233, 80, 77, 0.10) 84%, rgba(238, 112, 59, 0.10) 90%, rgba(243, 144, 42, 0.10) 96%, rgba(246, 157, 36, 0.10) 100%), #fff;
    box-shadow: inset 0px -1px 0px 0px rgba(21, 58, 91, 0.1);
    z-index: 31;
    height: clamp(4.26667rem, calc(4.26667rem + (8) * ((100vw - 1200px) / (1440 - 1200))), 4.8rem);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
    height: 70px;
}

/* Left Navigation */
.nav-left {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-left a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-left a:hover {
    color: #4a9eff;
}

/* Logo - Center */
.logo-container {
    display: flex;
    justify-content: center;
}

.logo {
    color: #1a1a1a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 4px;
    color: #1a1a1a;
}

/* Right Navigation */
.nav-right {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-right a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
    letter-spacing: 0.3px;
}

.nav-right a:hover {
    color: #4a9eff;
}

.nav-right a.gift-guide {
    color: #e74c3c;
}

/* Icon Buttons */
.icon-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 20px;
    padding: 5px;
    position: relative;
    transition: color 0.3s;
}

.icon-btn:hover {
    color: #4a9eff;
}

.help-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #4a9eff;
    color: white;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 4px;
}

.menu-line {
    width: 24px;
    height: 2px;
    background: #1a1a1a;
    transition: all 0.3s;
}

.mobile-menu-btn.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .menu-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    top: 118px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding: 20px;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.3s;
    z-index: 1;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-list a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Demo Content */
.demo-content {
    margin-top: 118px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px;
}

.demo-content h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
}

.demo-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #666;
}

/* Responsive */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 25px;
        gap: 25px;
    }

    .nav-left,
    .nav-right {
        gap: 20px;
    }
}

@media (max-width: 900px) {
    .nav-left,
    .nav-right {
        display: none;
    }

    .mobile-menu-btn,
    .mobile-nav {
        display: flex;
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: 15px;
    }

    .logo-text {
        font-size: 22px;
        letter-spacing: 6px;
    }

    .icon-buttons {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .promo-banner {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }

    .promo-text {
        font-size: 12px;
        text-align: center;
    }

    .nav-container {
        padding: 0 15px;
        height: 60px;
    }

    .logo-text {
        font-size: 18px;
        letter-spacing: 4px;
    }

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

    .demo-content {
        margin-top: 125px;
        padding: 20px;
    }
}

/* Hero Section - Modern Design */
.hero-section {
    position: relative;
    width: 100%;
    height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
    margin-top: 4rem;
}

/* Background Image and Overlays */
.hero-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.5) 100%);*/
    z-index: 2;
    mix-blend-mode: multiply;
}

/* Background Pattern Overlay */
.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
            radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 3;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 4;
}

/* Hero Content */
.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s
    ease-out 0.2s backwards;
    box-shadow: #f93239 3px 3px 6px 0px inset, #f93239 -3px -3px 6px 1px inset;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-title-gradient {
    display: block;
    background: linear-gradient(90deg, #fff 0%, #f0e68c 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    color: #f93239;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s
    ease;
    box-shadow: #f93239 3px 3px 6px 0px inset, #f93239 -3px -3px 6px 1px inset;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    animation: fadeInUp 0.8s ease-out 0.6s backwards;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.4s backwards;
}

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

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

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    animation: float 6s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

/* Decorative Shapes */
.hero-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    top: -50px;
    right: -50px;
    animation-duration: 15s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.03) 100%);
    bottom: -30px;
    left: -30px;
    animation-duration: 20s;
    animation-direction: reverse;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 25s;
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    animation: floatCard 4s
    ease-in-out infinite;
    z-index: 3;
    box-shadow: #f93239 3px 3px 6px 0px inset, #f93239 -3px -3px 6px 1px inset;
}

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

.hero-card-1 {
    top: 20%;
    right: -40px;
    animation-delay: 0s;
}

.hero-card-2 {
    bottom: 15%;
    left: -40px;
    animation-delay: 2s;
}

.card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dcd435 0%, #6a1623 100%);
    border-radius: 12px;
    font-size: 24px;
    flex-shrink: 0;
}

.card-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin: 0 0 4px 0;
}

.card-content p {
    font-size: 14px;
    color: white;
    margin: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    animation: bounce 2s ease-in-out infinite;
    z-index: 5;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.hero-scroll-indicator svg {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        gap: 60px;
        padding: 0 40px;
    }

    .hero-title {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        max-width: 600px;
        margin: 0 auto;
    }

    .stat-item {
        text-align: center;
    }

    .hero-badge {
        display: inline-flex;
    }

    .hero-floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 0 24px;
        gap: 40px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 24px;
        font-size: 15px;
    }

    .hero-scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-badge {
        font-size: 13px;
        padding: 8px 16px;
    }
}


/* Footer Section */
.footer {
    background: linear-gradient(180deg, #FFF 19.07%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #FCE8D6 0%, #BEE6FA 50%, #E4D9FD 100%);
    /*padding: clamp(2.4rem, calc(2.4rem + (20) * ((100vw - 428px) / (1920 - 428))), 5.33333rem) clamp(1.6rem, calc(1.6rem + (56) * ((100vw - 428px) / (1920 - 428))), 5.33333rem);*/
    overflow: hidden;
    position: relative;
    padding-top: 4rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Top Footer - Main Content */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr 1.5fr;
    gap: 60px;
}

/* Newsletter Section */
.footer-newsletter {
    padding-right: 20px;
}

.footer-logo {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 6px;
    color: #2c3e50;
    margin-bottom: 25px;
    display: block;
}

.newsletter-text {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.newsletter-form {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    padding: 5px 5px 5px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 14px;
    padding: 10px 10px;
    color: #333;
}

.newsletter-input::placeholder {
    color: #a0aec0;
}

.newsletter-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #1a2633;
}

/* Footer Columns */
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-column a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
    line-height: 1.5;
}

.footer-column a:hover {
    color: #2c3e50;
}

/* Corporate Gifting Card */
.corporate-card {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%234a5568" width="400" height="300" rx="16"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 30px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.corporate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.corporate-content {
    position: relative;
    z-index: 2;
}

.corporate-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.corporate-subtitle {
    font-size: 15px;
    opacity: 0.95;
    line-height: 1.4;
}

.corporate-btn {
    background: white;
    color: #2c3e50;
    border: none;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    position: relative;
    z-index: 2;
}

.corporate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Bottom Footer */
.footer-bottom {
    border-top: 1px solid #cbd5e0;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.country-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
}

.country-selector:hover {
    border-color: #cbd5e0;
}

.flag-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.country-name {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #2c3e50;
}

.copyright {
    color: #5a6c7d;
    font-size: 13px;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6c7d;
    font-size: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.social-icon:hover {
    color: #2c3e50;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr 1.2fr;
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding: 0 25px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-newsletter {
        grid-column: 1 / -1;
    }

    .corporate-card {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-bottom-left {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .social-icons {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-logo {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .newsletter-form {
        flex-direction: column;
        padding: 10px;
        gap: 10px;
    }

    .newsletter-input {
        width: 100%;
        padding: 12px;
    }

    .newsletter-btn {
        width: 100%;
        padding: 12px;
    }

    .corporate-title {
        font-size: 22px;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

/* Products Section */
.products-section {
    padding: 60px 0px 0;
    position: relative;
    background: linear-gradient(180deg, #FFF 0%, rgba(255, 255, 255, 0.00) 100%), linear-gradient(90deg, #FCE8D6 0%, #BEE6FA 50%, #E4D9FD 100%);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header with Tabs */
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
}

.products-title-tabs {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.products-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a2332;
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid #d1d5db;
    color: #4b5563;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: #1a2332;
    color: #1a2332;
}

.tab-btn.active {
    background: #1a2332;
    border-color: #1a2332;
    color: white;
}

.shop-all-link {
    color: #1a2332;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.shop-all-link:hover {
    opacity: 0.7;
}

/* Product Slider */
.product-slider-wrapper {
    position: relative;
    margin-bottom: 60px;
}

.product-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 10px;
}

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

/* Product Card */
.product-card {
    flex: 0 0 calc(25% - 19px);
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    cursor: pointer;
    min-width: 280px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 10px 10px 0 0;
}
img.product-image {
    width: 100%;
    margin-bottom: -1rem;
    border-radius: 10px 10px 0 0;
}
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: white;
    color: #1a2332;
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-image-placeholder {
    width: 100%;
    height: 250px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 14px;
}

.product-details {
    padding: 20px;
}

.product-name {
    font-size: 17px;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 12px;
    line-height: 1.4;
}
.product-name a{
    color: #000000d4;
    font-weight: 400;
    text-decoration: none;
}
.product-name a:hover{
    text-decoration: underline;
}
.product-colors {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.color-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.color-dot:hover {
    border-color: #1a2332;
}

.color-dot.active {
    border-color: #1a2332;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #1a2332;
}

.product-info {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
    line-height: 1.5;
}

.product-features {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-original, span.fct-compare-price {
    font-size: 15px;
    color: #f93239;
    text-decoration: line-through;
}
span.fct-item-price{
    font-weight: bolder;
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: #1a2332;
}
h1#fct-product-summary-title {
    font-size: 24px;
    line-height: normal;
    font-weight: 400;
}
.fct-product-quantity-container .quantity-title {
    color: #f93239!important;
}
.fct-product-quantity .fct-quantity-input {
    color: #ffffff!important;
}
.fct-product-quantity {
    background-color: #f93239!important;
    border-radius: 0 !important;
}
button.fct-quantity-increase-button:hover {
    background: darkturquoise;
}
button.fct-quantity-decrease-button:hover {
    background: gainsboro;
}
.fluent-cart-direct-checkout-button {
    background: #ffffff00 !important;
    gap: 10px !important;
    padding: 16px 32px !important;
    color: #0073aa !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    transition: all 0.3s
    ease !important;
    box-shadow: #e4e4e4 3px 3px 6px 0px inset, #0073aa42 -3px -3px 6px 1px inset !important;
}
.fct_place_order_btn_wrap button#fluent_cart_order_btn, .fct-cart-drawer-footer a {
    width: 100% !important;
    border-radius: 14px !important;
    padding: 16px !important;
    font-size: 16px;
    font-weight: 600;
    border: none;
    background: linear-gradient(135deg, #4a9eff, #f93239) !important;
    color: #ffffff!important;
    transition: all 0.25s ease!important;
}
.fluent-cart-add-to-cart-button:hover {
    border-color: var(--fct-add-to-cart-btn-border-color);
    background-color: #f6f7ff ! Important;
    color: var(--fct-add-to-cart-btn-text-color);
}
body.wp-singular.fluent-products-template-default.single.single-fluent-products.wp-theme-er-shop.no-sidebar table {
    width: fit-content!important;
}
@media (max-width: 768px) {
    .fct-single-product-page {
        padding: 0 1rem!important;
    }
}
.fct-product-card button {
    background: #ffffff00 !important;
    color: #0073aa !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 3px !important;
    text-decoration: none !important;
    transition: all 0.3s
    ease !important;
    box-shadow: #e4e4e4 3px 3px 6px 0px inset, #0073aa42 -3px -3px 6px 1px inset !important;
}
h3.fct-product-card-title {
    padding: .5rem 0 0!important;
}
.fct-products-container .fct-product-card a {
    color: #113b66;
    text-decoration: none;
    font-weight: 400;
}
.fct-thank-you-page {
    margin-top: 8rem!important;
}
.fct-thank-you-page-body-content-inner .no-print p {
    display: none!important;
}


/* Slider Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.slider-btn:hover {
    background: #1a2332;
    color: white;
    border-color: #1a2332;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.slider-btn-prev {
    margin-left: -24px;
}

.slider-btn-next {
    margin-right: -24px;
}

/* Animated Text Banner */
.animated-banner {
    background: #fef3c7;
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid #fde68a;
    border-bottom: 1px solid #fde68a;
}

.banner-content {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.banner-text {
    display: inline-flex;
    align-items: center;
    gap: 40px;
    padding-right: 40px;
}

.banner-text span {
    font-size: 14px;
    font-weight: 600;
    color: #1a2332;
}

.banner-text .hashtag {
    color: #3b82f6;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-card {
        flex: 0 0 calc(33.333% - 17px);
    }
}

@media (max-width: 768px) {
    .products-container {
        padding: 0 25px;
    }

    .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-title-tabs {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 20px;
    }

    .product-card {
        flex: 0 0 calc(50% - 13px);
        min-width: 240px;
    }

    .slider-btn-prev {
        margin-left: 10px;
    }

    .slider-btn-next {
        margin-right: 10px;
    }
}

@media (max-width: 480px) {
    .products-container {
        padding: 0 15px;
    }

    .products-title {
        font-size: 24px;
    }

    .category-tabs {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .category-tabs::-webkit-scrollbar {
        display: none;
    }

    .product-card {
        flex: 0 0 85%;
        min-width: 260px;
    }

    .product-slider {
        gap: 15px;
    }

    .banner-text span {
        font-size: 14px;
    }
}

.owner-page {
    padding-top: 5rem;
}
.owner-quote {
    padding: 100px 0;
    background: linear-gradient(180deg, #FFF 19.07%, rgba(255, 255, 255, 0.30) 100%), linear-gradient(90deg, #FCE8D6 0%, #BEE6FA 50%, #E4D9FD 100%);
    position: relative;
    min-height: 70vh;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}
.quote-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.quote-text {
    font-size: 28px;
    line-height: 1.6;
    color: #0073aa69;
    font-weight: 500;
    font-style: italic;
    margin-bottom: 24px;
}
.quote-author {
     font-size: 18px;
     color: #f932397d;
     font-weight: 600;
 }

.product-container .prod-title-bar{
    padding-left: 1rem;
    margin-top: 2rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

.single-static-product-card {
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}
.single-static-product-card a {
    text-decoration: none;
}
.single-static-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 12px;
    background: #f5f5f5;
}

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

.product-title {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    min-height: 40px;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.current-price {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
}

.discount {
    font-size: 16px;
    color: white;
    font-weight: 500;
    background: red;
    padding: 0.2rem .5rem;
    border-radius: 50px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.stars {
    color: #ffa500;
    font-size: 14px;
}

.reviews {
    font-size: 12px;
    color: #999;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

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