/* ==================== CSS VARIABLES & RESET ==================== */

:root {
    --primary-color: #2f5d50;
    --secondary-color: linear-gradient(180deg, #e6ac86 0%, #b87333 50%, #704221 100%);
    --secondary-solid: #b87333;
    --accent-color: #e6d3b1;
    --light-bg: #f6f4ef;
    --dark-bg: #1f3b34;
    --white: #fff;
    --text-color: #333;
    --shadow: 0 10px 30px rgb(0 0 0 / 8%);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --copper-text: #4a3b32;
    --copper-gradient: linear-gradient(135deg, #b87333 0%, #8c5528 40%, #b87333 60%, #6d3f1e 100%);
    --copper-btn-gradient: linear-gradient(180deg, #e6ac86 0%, #b87333 50%, #704221 100%);
    --copper-shadow: 0 4px 15px rgb(130 70 40 / 40%);
    --whatsapp-green: #25D366;
    --whatsapp-dark: #128c7e;
    --primary-light: #4a7c6d;
    --secondary-light: #d4935a;
    --text-main: #333333;
    --text-light: #666666;
    --shadow-hover: 0 20px 45px rgba(47, 93, 80, 0.2);
    --glass: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
}

/* Reset i përgjithshëm */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ==================== TYPOGRAPHY & BASE ==================== */

body {
    font-family: Lato, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.filter-btn:focus-visible {
    outline: 3px solid var(--secondary-solid);
    outline-offset: 3px;
}

a:focus,
button:focus {
    outline: none;
}

ul {
    list-style: none;
}

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

section {
    padding: 100px 0;
    position: relative;
}

/* ==================== GLOBAL ELEMENTS ==================== */

.btn {
    display: inline-block;
    position: relative;
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    background: var(--copper-btn-gradient);
    border: 1px solid rgb(255 255 255 / 10%);
    box-shadow: inset 0 1px 0 rgb(255 255 255 / 40%),
        inset 0 -1px 0 rgb(0 0 0 / 20%),
        0 6px 20px rgb(130 70 40 / 30%);
    overflow: hidden;
    transition: var(--transition);
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 40%, rgb(255 255 255 / 40%) 45%, transparent 60%);
    border-radius: 50px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes liquid-shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.btn:hover::before {
    animation: liquid-shine 1.5s infinite linear;
    opacity: 1;
}

.btn:active {
    transform: translateY(2px);
}

/* Loader */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader-wrapper.fade-out {
    opacity: 0;
    visibility: hidden;
}

.copper-loader {
    width: 60px;
    height: 60px;
    border: 5px solid var(--accent-color);
    border-top: 5px solid var(--secondary-solid);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    display: inline-block;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    width: 80px;
    height: 4px;
    background: var(--secondary-solid);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    margin-top: 15px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-family: 'Playfair Display', serif;
    line-height: 1.3;
}

/* ==================== HEADER & NAVIGATION ==================== */

header {
    background: rgb(255 255 255 / 95%);
    box-shadow: 0 2px 20px rgb(0 0 0 / 5%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    padding-top: max(15px, env(safe-area-inset-top));
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 30px rgb(0 0 0 / 10%);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Alex Brush', cursive;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--secondary-solid);
}

.header-socials {
    display: flex;
    gap: 15px;
}

.header-socials a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header-socials a i {
    display: block;
    line-height: 1;
}

.header-socials a:hover {
    color: var(--secondary-solid);
    transform: translateY(-2px);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* ==================== HERO SECTION ==================== */

.hero {
    background: linear-gradient(rgb(31 59 52 / 40%), rgb(31 59 52 / 70%)),
        url('../img/hero.webp') center/cover no-repeat fixed;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: max(80px, calc(80px + env(safe-area-inset-top)));
    overflow: visible; /* Lejon elementët të shihen plotësisht edhe dalin pak jashtë */
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: var(--white);
    text-shadow: 2px 2px 10px rgb(0 0 0 / 30%);
}

.hero .tagline {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ==================== FEATURES SECTION ==================== */

.features-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    
    display: flex;
    flex-direction: column;
    align-items: center;
    
    /* KY ËSHTË I RËNDËSISHËM: Krijon hapësirën 3D për rrotullim */
    perspective: 1000px; 
}

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

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--secondary-light);
}

/* RRETHI I IKONËS - I PADUKSHËM */
.feature-icon-box {
    background: transparent !important; 
    width: auto !important;
    height: auto !important;
    min-width: unset !important;
    min-height: unset !important;
    border-radius: 0;
    border: none;

    margin-bottom: 25px; 
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* Ruajmë stilin transformuese 3D */
    transform-style: preserve-3d;
    transition: transform 0.8s ease-in-out;
}

/* RROTULLIMI 3D */
.feature-card:hover .feature-icon-box {
    transform: rotateY(360deg);
}

/* IKONA - ME EFEKT 3D (HIJE) */
.feature-icon-box img {
    width:120px;
    height: auto;
    object-fit: contain;
    
    /* KJO SHTON THELLËSI 3D: Një hije e butë që ndjek formën e ikonës */
    filter: drop-shadow (0px 10px 15px rgba(0,0,0,0.2));
    
    backface-visibility: visible;
    -webkit-backface-visibility: visible;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ==================== ABOUT SECTION ==================== */

.about {
    background: linear-gradient(to bottom, var(--light-bg), var(--white));
}

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

.about-text h2 {
    text-align: left;
    margin-bottom: 30px;
}

.about-text h2::after {
    left: 0;
    transform: none;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.about-text .signature {
    font-style: italic;
    color: var(--secondary-solid);
    font-size: 1.5rem;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.about-images img:hover {
    transform: scale(1.03);
}

.about-images img:nth-child(2) {
    margin-top: 40px;
}


/* ==================== PRODUCTS SECTION ==================== */

.products {
    background: var(--white);
}

.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: transparent;
    border: 2px solid var(--secondary-solid);
    color: var(--secondary-solid);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background-image: var(--secondary-color);
    background-color: transparent;
    color: var(--white);
    border-color: transparent;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgb(0 0 0 / 15%);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-image: var(--secondary-color);
    background-color: transparent;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 15;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    pointer-events: none;
    line-height: 1.2;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 350px;
    width: 100%;
    z-index: 1;
    background: var(--light-bg);
}

.product-img-wrapper .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
    z-index: 1;
}

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

.quick-view-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: bold;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgb(0 0 0 / 10%);
    z-index: 10;
}

.product-card:hover .quick-view-overlay {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%) scale(1);
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding: 0 5px;
}

.product-footer .price {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-right: auto;
}

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

.product-whatsapp-btn {
    padding: 10px 20px;
    width: auto;
    height: auto;
    background: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
    flex-shrink: 0;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

.product-whatsapp-btn i {
    font-size: 1.1rem;
    line-height: 1;
}

.product-whatsapp-btn:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.product-whatsapp-btn:active {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.4);
}

.add-to-cart-btn,
.cart-icon,
.cart-sidebar,
.modal-actions {
    display: none !important;
}

/* ==================== PROCESS SECTION ==================== */

#process {
    background: var(--white);
    padding: 100px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 30px rgb(0 0 0 / 8%);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
}

.step:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--whatsapp-green);
}

.step-number {
    width: 70px;
    height: 70px;
    min-width: 70px;
    min-height: 70px;
    background: var(--whatsapp-green);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 15px rgb(37 211 102 / 40%);
    font-family: 'Playfair Display', serif;
    line-height: 1;
    padding: 0;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.step p {
    color: #555;
    line-height: 1.6;
}

/* ==================== CONTACT SECTION ==================== */

.contact {
    background: var(--light-bg);
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-item {
    display: flex;
    align-items: center;
    /* Kjo e mban ikonën në qendër vertikalisht dhe ndalon deformimin */
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    /* 1. Dimensionet fikse dhe të detyruara */
    width: 50px !important;
    height: 50px !important;

    /* 2. Sigurohu që nuk ndikohet nga elementët krah tij */
    flex: 0 0 50px !important;
    margin: 0;

    /* 3. Ngjyra dhe Forma (Përdorim background-image për gradientin) */
    background-image: var(--secondary-color) !important;
    border-radius: 50% !important;

    /* 4. Qendërsimi perfekt i ikonës brenda */
    display: grid !important;
    place-items: center !important;

    /* 5. Reset për çdo veti që mund ta deformojë */
    padding: 0 !important;
    border: none !important;
    box-shadow: var(--copper-shadow);
}

.contact-icon i {
    /* Sigurohemi që ikona vetë nuk ka përmasa që shtyjnë rrethin */
    font-size: 1.3rem !important;
    color: white !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
}

.contact-item div {
    flex: 1;
}

.contact-item h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.contact-item p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.contact-item p a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item p a:hover {
    color: var(--secondary-solid);
}

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

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text-color);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999;
    opacity: 1;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-solid);
    box-shadow: 0 0 0 3px rgba(184, 115, 51, 0.1);
}

.contact-form input:disabled,
.contact-form textarea:disabled {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.6;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    font-size: 1.05rem;
    margin-top: 10px;
}

/* ==================== MODAL ==================== */

.modal {
    position: fixed;
    inset: 0;
    background: rgb(0 0 0 / 70%);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--white);
    max-width: 680px;
    width: 95%;
    border-radius: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    padding-top: 5px;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--secondary-solid);
    border-radius: 10px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

.modal-close,
#closeModal {
    position: absolute;
    /* ← NDRYSHIMI KRYESOR */
    top: 15px;
    right: 15px;
    z-index: 10001;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    color: #333;
}

.modal-close:hover,
#closeModal:hover {
    transform: rotate(90deg);
    background: #ff6b6b;
    color: white;
    box-shadow: 0 6px 16px rgba(255, 107, 107, 0.4);
}

.modal-top-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.modal-photo-col {
    width: 100%;
    height: auto;
    min-height: 150px;
    max-height: 380px;
    overflow: visible;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 15px;
}

.modal-image {
    max-width: 100%;
    max-height: 350px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.modal-title-col {
    width: 100%;
    padding: 20px 25px 15px;
}

.product-category {
    font-size: 0.85rem;
    color: var(--secondary-solid);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

#modalTitle {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.2;
    color: var(--primary-color);
}

.modal-price-action-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
    flex-wrap: nowrap;
}

.modal-price-action-row .price {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    flex-shrink: 0;
}

.modal-whatsapp-inline {
    padding: 10px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--whatsapp-green);
    color: white;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.05rem;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    flex-shrink: 0;
    min-height: 48px;
}

.modal-whatsapp-inline:hover {
    background: var(--whatsapp-dark);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

.modal-whatsapp-inline i {
    font-size: 1.2rem;
}

#modalDescription {
    color: #555;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.modal-bottom-section {
    width: 100%;
    padding: 22px 25px;
    background: #fafafa;
    border-top: 2px solid #eee;
}

.modal-bottom-section h4 {
    text-align: center;
    margin-bottom: 16px;
    font-size: 1.4rem;
    color: var(--primary-color);
}

#modalBenefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

#modalBenefits li {
    margin-bottom: 12px;
    padding-left: 0;
    line-height: 1.5;
    position: relative;
    font-size: 1rem;
}

#modalBenefits li strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 600;
}

/* ==================== FOOTER ==================== */

footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 20px;
}

.site-footer {
    background-color: #1a1a1a;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: #fff;
    font-family: 'Playfair Display', serif;
}

.footer-description,
.footer-contact-info {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-contact-info a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--secondary-solid);
    padding-left: 5px;
}

.footer-contact-info a:hover {
    color: var(--secondary-solid);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #333;
    text-align: center;
    color: #888;
    font-size: 0.85rem;
}

/* ==================== MEDIA QUERIES ==================== */

@media (max-width: 480px) {
    .hero .btn-container {
        /* Ne duhet të supozojmë që butonat janë brenda një divi, ose i stilizojmë direkt hero-n */
        display: flex;         /* Aktivizon flexbox */
        flex-wrap: wrap;       /* Lejon butonat të kërcejnë në rresh të ri */
        justify-content: center; /* I qendron ato */
        gap: 15px;             /* Hapësirë mes butonave horizontalisht dhe vertikalisht */
    }
    .hero .btn {
        width: auto;           /* "Magjia": Butoni merr vetëm sa hapësirë i nevojshme, jo gjithë ekranin */
        display: inline-flex;  /* I mundëson atyre të qëndrojnë përkatesë */
        flex-grow: 1;          /* Për të shfrytëzuar hapësirën mbetur nëse mbetet vend bosh */
        min-width: 140px;      /* Siguron që nuk bëhen shumë të ngushtë */
        white-space: normal;   /* Lejon tekstin të shkojë në 2 rreshta brenda butonit */
        line-height: 1.2;
        padding: 12px 20px;    /* Pak më pak padding për të mos qenë të mëdhenj */
        font-size: 0.9rem;
        text-align: center;
    }

    .contact-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        align-items: center;
    }

    .product-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .product-whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .contact .section-header h2 {
        font-size: 1.9rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero .tagline {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    /* Shfaq vetëm nëse prindi (.nav-links) ka klasën .active */
    .nav-links.active .mobile-socials {
        display: block !important;
    }
    .mobile-socials {
        display: block; /* Shfaqet vetëm kur e hapim hamburger menu */
    }
    .hamburger {
        display: flex;
        /* Shfaqet vetëm në mobile */
        z-index: 1001;
    }

    .logo {
        font-size: 1.5rem;
        /* Zvogëlon madhësinë e shkrimit nga 2.2rem në 1.5rem */
        white-space: nowrap;
        /* E detyron logon të mos thyhet në dy rreshta */
    }

    /* Kthejmë listën në një menu që zbret poshtë */
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        /* E fshehim jashtë ekranit në fillim */
        width: 70%;
        height: 100vh;
        background: var(--white);
        padding: 100px 30px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }
    
/* === SOCIAL MEDIA MENU (RREGULLIM I RI) === */

.mobile-socials {
    /* 1. E detyrojmë të mos shfaqet kurrë në fillim */
    display: none !important; 
    
    /* Stilizim */
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 20px;
    padding-bottom: 20px; /* Pak hapësirë fundi */
}

.mobile-socials .social-label {
    display: block;
    font-size: 0.85rem;
    color: var(--secondary-solid);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
}

.mobile-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.mobile-socials a:hover {
    transform: scale(1.2);
    color: var(--secondary-solid);
}


    /* Klasa që do të shtohet me JavaScript */
    .nav-links.active {
        right: 0;
        /* Menuja hyn në ekran */
    }

    .modal-price-action-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
    }

    .modal-whatsapp-inline {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 1.05rem;
    }

    .modal-price-action-row .price {
        font-size: 1.8rem;
    }

    .modal-title-col {
        padding: 16px 18px 12px;
    }

    #modalTitle {
        font-size: 1.6rem;
    }

    .modal-photo-col {
        max-height: 320px;
        padding: 10px;
    }

    .modal-image {
        max-height: 300px;
    }

    .modal-bottom-section {
        padding: 20px 18px;
    }

    .modal-bottom-section h4 {
        font-size: 1.3rem;
    }

    .contact {
        padding: 60px 0;
    }

    .contact .section-header {
        margin-bottom: 40px;
    }

    .contact .section-header h2 {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-item {
        gap: 15px;
        margin-bottom: 25px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
        min-height: 45px;
        font-size: 1.1rem;
    }

    .contact-item h4 {
        font-size: 1.1rem;
    }

    .contact-form {
        gap: 15px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .contact-form textarea {
        min-height: 120px;
    }

    .product-whatsapp-btn {
        padding: 9px 18px;
        font-size: 0.85rem;
    }

    .product-whatsapp-btn i {
        font-size: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-images img:nth-child(2) {
        margin-top: 0;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

@media (min-width: 769px) {

    .modal-close:hover,
    #closeModal:hover {
        transform: rotate(90deg) scale(1.1);
        background: #ff6b6b;
        color: white;
        box-shadow: 0 5px 18px rgba(255, 107, 107, 0.5);
    }

    .modal-content {
        max-width: 800px;
        /* ← E rrisim pak për 2 kolona */
        padding-top: 8px;
        position: relative;
    }

    /* === SHTIMI I RI === */
    .modal-top-row {
        flex-direction: row;
        align-items: stretch;
    }

    .modal-photo-col {
        width: 45%;
        max-height: none;
        min-height: 400px;
        padding: 20px;
    }

    .modal-title-col {
        width: 55%;
        padding: 25px 30px 20px;
        display: flex;
        flex-direction: column;
    }

    /* === FUNDI I SHTIMIT === */

    .modal-image {
        max-height: 380px;
        width: 100%;
        object-fit: contain;
    }

    .modal-price-action-row {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 25px;
    }

    .modal-price-action-row .price {
        font-size: 2.1rem;
    }

    .modal-whatsapp-inline {
        padding: 11px 32px;
        font-size: 1.05rem;
        min-height: 50px;
    }

    .modal-bottom-section {
        padding: 20px 25px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .modal-price-action-row {
        gap: 18px;
        
    }
    .mobile-socials {
        display: none !important; /* Kjo siguron që "Na ndiqni" mos të shfaqet në desktop */
    }

    .modal-price-action-row .price {
        font-size: 1.95rem;
    }

    .modal-whatsapp-inline {
        padding: 10px 26px;
        font-size: 1rem;
    }
}