/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from design */
    --primary-blue: #2E7FFF;
    --dark-bg: #2A2A2A;
    --light-bg: #F5F5F5;
    --white: #FFFFFF;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #E0E0E0;
    --sold-out-pink: #FF4E88;
    --special-green: #66CC33;
    --fizzy-red: #DC143C;

    /* Product card gradient backgrounds */
    --gradient-pink: linear-gradient(135deg, #FF6B9D 0%, #FFA8C5 100%);
    --gradient-orange: linear-gradient(135deg, #FF8C42 0%, #FFB366 100%);
    --gradient-blue: linear-gradient(135deg, #4A90FF 0%, #7AB8FF 100%);
    --gradient-pink-light: linear-gradient(135deg, #FFB3D9 0%, #FFD6EC 100%);
    --gradient-green: linear-gradient(135deg, #78C850 0%, #A8E68C 100%);

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px 20px;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: var(--border-color);
    border-radius: 15px;
    color: black;
    padding: 30px 40px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 400px;
}

.modal-content h2 {
    margin-bottom: 20px;
    font-size: 20px;
}

.buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.modal-content button {
    padding: 10px 25px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

#yesBtn {
    background: #6b2df0;
    color: #fff;
}

#yesBtn:hover {
    background: #3e8e41;
}

#noBtn {
    background: #9d3bf6;
    color: #fff;
}

#noBtn:hover {
    background: #d32f2f;
}

/* Warning section */
.warn {
    font-size: 16px;
    background-color: #000;
    color: white;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-weight: bold;

}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   TOP BAR
   =================================== */
.top-bar {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 8px 0;
    font-size: 12px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email {
    font-size: 11px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-icons a:hover {
    opacity: 1;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop Navigation */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex: 1;
}

.nav-menu li a {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
}

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

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

.nav-menu li a.active {
    color: var(--primary-blue);
}

/* Logo */
.logo {
    text-align: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
}

.logo.left {
    text-align: left;
    position: relative;

}

.logo h1 {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 2px;
    line-height: 1;
}

.logo sup {
    font-size: 14px;
}

.logo p {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--text-gray);
    margin-top: -5px;
}

/* User Actions */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 1;
    justify-content: flex-end;
}

.login-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.login-link:hover {
    color: var(--primary-blue);
}

.icon-btn {
    font-size: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.icon-btn:hover {
    transform: scale(1.1);
    color: var(--primary-blue);
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cart-btn:hover {
    color: var(--primary-blue);
}

.cart-icon {
    font-size: 22px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    padding: 80px 30px 30px;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    cursor: pointer;
    color: var(--text-dark);
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 25px;
}

.mobile-nav li a {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    padding: 15px 10px;
    margin: 5px 0;
    border-bottom: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.mobile-nav li a:hover {
    color: var(--primary-blue);
    padding-left: 20px;
}

.mobile-user-actions {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid var(--border-color);
}

.mobile-login {
    display: block;
    text-align: center;
    padding: 12px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.mobile-login:hover {
    background-color: #1E5FCC;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #87CEEB 0%, #B0E0E6 50%, #F0F8FF 100%);
    padding: 0;
    overflow: hidden;
}

.hero-slide {
    display: none;
}

.hero-slide.active {
    display: block;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    padding: 40px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-left {
    padding: 20px;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-shadow:
        2px 2px 0 rgba(200, 200, 200, 0.5),
        -2px -2px 0 rgba(200, 200, 200, 0.5),
        2px -2px 0 rgba(200, 200, 200, 0.5),
        -2px 2px 0 rgba(200, 200, 200, 0.5);
    margin-bottom: 10px;
    line-height: 1;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 24px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.feature-text strong {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dark);
}

.feature-text span {
    font-size: 9px;
    color: var(--text-gray);
}

.hero-product-preview {
    margin-top: 20px;
}

.hero-product-preview img {
    max-width: 280px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

.hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.hero-logo-watermark {
    position: absolute;
    top: 20px;
    right: 20px;
    text-align: center;
}

.hero-logo-watermark span {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: rgba(46, 127, 255, 0.3);
    letter-spacing: 2px;
    line-height: 1;
}

.hero-logo-watermark small {
    font-size: 10px;
    color: rgba(46, 127, 255, 0.3);
    letter-spacing: 1px;
}

.hero-products {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    padding: 20px;
}

.hero-products img {
    max-height: 380px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-products img:hover {
    transform: translateY(-10px) scale(1.05);
}





/* Hero Single Image - Simplified Slider */
.hero-single-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    position: relative;
}

.hero-cta {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-blue) 0%, #1a56cc 100%);
    color: var(--white);
    padding: 15px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 10px 25px rgba(46, 127, 255, 0.4);
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.hero-cta:hover {
    transform: translateX(-50%) translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(46, 127, 255, 0.5);
    background: linear-gradient(135deg, #3b8aff 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.hero-cta:active {
    transform: translateX(-50%) scale(0.98);
}

.hero-single-image img {
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.3));
}


/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.hero-nav:hover {
    background: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Hero Pagination */
.hero-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.pagination-dot {
    width: auto;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.pagination-dot.active,
.pagination-dot:hover {
    background: rgba(0, 0, 0, 1);
    color: var(--white);
}

.pagination-dot.active::after {
    width: 100%;
}

/* ===================================
   TRENDING SECTION
   =================================== */
.trending-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.view-all {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.view-all:hover {
    color: var(--primary-blue);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 5;
    text-transform: uppercase;
}

.product-badge.sold-out {
    background-color: var(--sold-out-pink);
    color: var(--white);
}

.product-badge.special-offer {
    background-color: var(--special-green);
    color: var(--white);
}

.product-badge.fizzy {
    background-color: var(--fizzy-red);
    color: var(--white);
}

.product-info {
    padding: 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-cta {
    display: block;
    width: 100%;
    margin-top: 15px;
    padding: 12px;
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(46, 127, 255, 0.2);
}

.product-cta:hover {
    background: #1a56cc;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(46, 127, 255, 0.3);
    color: var(--white);
}

.product-image {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Product Card Backgrounds */
.product-card:nth-child(1) .product-image {
    background: var(--gradient-pink);
}

.product-card:nth-child(2) .product-image {
    background: var(--gradient-orange);
}

.product-card:nth-child(3) .product-image {
    background: var(--gradient-blue);
}

.product-card:nth-child(4) .product-image {
    background: var(--gradient-pink-light);
}

.product-card:nth-child(5) .product-image {
    background: var(--gradient-green);
}

.product-card:nth-child(6) .product-image {
    background: var(--gradient-pink);
}

.product-card:nth-child(7) .product-image {
    background: var(--gradient-blue);
}

.product-card:nth-child(8) .product-image {
    background: var(--gradient-green);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

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

/* Logo watermark on product cards */
.product-image::before {
    content: 'JNR';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 5px;
    z-index: 0;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-brand {
    font-size: 22px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.product-rating {
    color: #FFB800;
    font-size: 14px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #F0F8FF 0%, #E1F5FF 100%);
}

.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-box {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-box h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 13px;
    color: var(--text-gray);
    margin: 0;
}

/* ===================================
   BLOG SECTION
   =================================== */
.blog-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.blog-image {
    height: 450px;
    background: var(--gradient-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
}

.review-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-author {
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 15px;
    display: block;
    font-size: 14px;
}

.blog-content p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.read-more {
    display: none;
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #F0F8FF 0%, #E1F5FF 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-info>p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-item strong {
    font-size: 14px;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-blue);
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1E5FCC;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-blue);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #1E5FCC;
}

/* ===================================
   FOOTER
   =================================== */
footer {
    position: relative;
    width: 100%;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    padding: 40px 100px;
}

footer a {
    text-decoration: none;
    color: inherit;
}

.footer-logo {
    padding: 35px 20px;
    padding-top: 20px;
    margin-right: 40px;
}

.footer-logo img {
    width: 120px;
    height: auto;
}

.footer-cont {
    width: 100%;
    display: flex;
    color: white;
    font-size: 26px;
    gap: 80px;
    padding-bottom: 35px;
    border-bottom: 2px solid gray;
    position: relative;
}

.foot-cont-one {
    display: flex;
    gap: 80px;
}

.copyright {
    width: 100%;
    text-align: center;
    padding-top: 35px;
    border-top: 2px solid gray;

    color: rgb(168, 167, 167);
}

footer svg {
    fill: rgba(255, 255, 255, 0.842);
    stroke-miterlimit: 10;
    stroke-width: 1px;
    width: 40px;
}

.city {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
}

.cont-col {
    display: flex;
    flex-direction: column;
}

.cont-col:first-child {
    color: rgb(168, 167, 167);
}

.cont-col:first-child a:first-child {
    color: white;
}

.foot-cont-two {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.foot-cont-two div {
    align-items: center;
    display: flex;
    gap: 20px;
}

.foot-cont-three {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    color: white;
    font-size: 20px;
}

.foot-cont-three p:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.foot-cont-three p {
    position: relative;
    padding-right: 16px;
}

.foot-cont-three p::after {
    content: "▼";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.foot-cont-three p.active::after {
    transform: translateY(-50%) rotate(180deg);
}

.foot-cont-three a {
    display: none;
}

.social {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    border-bottom: 2px solid gray;
}

@media (max-width: 768px) and (min-width: 320px) {
    footer {
        align-items: center;
        padding: 40px 40px;
    }

    .warn {
        font-size: 10px !important;
    }

    .footer-logo {
        margin-right: 0;
    }

    .social {
        gap: 0;
    }

    .footer-logo img {
        object-fit: cover;
        width: 90px;
    }

    .footer-cont {
        font-size: 18px;
        flex-direction: column;
    }

    .foot-cont-two {
        padding-top: 35px;
        border-top: 2px solid gray;
    }

    .foot-cont-three {
        flex-direction: column;
    }

    .featured-title {
        font-size: 1.25rem;
    }

    .featured-desc {
        font-size: 0.9rem;
    }

    .featured-btns {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .featured-btns a {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }
}

/* ===================================
   DESCRIPTIONS SECTION
   =================================== */
.descriptions-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.descriptions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.description-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 15px;
    border-left: 6px solid var(--primary-blue);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.description-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    background: var(--white);
}

.description-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.description-card p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
}

.description-card strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.btn-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.show-more-btn {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.show-more-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(46, 127, 255, 0.3);
    transform: translateY(-3px);
}

.show-more-btn:active {
    transform: translateY(-1px);
}

/* Mobile - Below 768px */
@media (max-width: 768px) {

    /* Show mobile menu toggle */
    .mobile-menu-toggle {
        display: flex;
        order: 1;
        /* Move to the right */
    }

    /* Hide desktop navigation */
    .nav-menu {
        display: none;
    }

    /* Adjust logo */
    .logo {
        position: static;
        transform: none;
        order: -1;
        /* Move to the left */
        text-align: left;
    }

    .logo h1 {
        font-size: 24px;
    }

    /* Simplify user actions */
    .user-actions {
        display: none;
    }

    .login-link {
        display: none;
    }

    .cart-text {
        display: none;
    }

    /* Hero Section */
    .hero-title {
        font-size: 48px;
        letter-spacing: 4px;
    }

    .hero-cta {
        padding: 10px 25px;
        font-size: 0.9rem;
        bottom: 13%;
    }

    .hero-pagination {
        bottom: 0;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-products {
        gap: 10px;
    }

    .hero-products img {
        max-height: 180px;
    }

    .hero-product-center {
        max-height: 220px !important;
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    /* Products Grid */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .product-image {
        height: 200px;
    }

    .product-info h3 {
        font-size: 12px;
        min-height: auto;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Blog */
    .blog-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    :root {
        --section-padding: 50px 15px;
    }
}

/* Small Mobile - Below 480px */
@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .hero-cta {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

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

/* Very Small Screens - 320px */
@media (max-width: 320px) {
    .logo h1 {
        font-size: 20px;
    }

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

    .user-actions {
        gap: 5px;
    }

    .icon-btn {
        font-size: 14px;
    }
}