/* =============================================
   TEKTEKİN MOBİLYA - ANA STIL DOSYASI
   Renk Paleti: beyaz, açık ahşap, koyu gri, siyah
   ============================================= */

:root {
    --color-primary: #2c2c2c;
    --color-secondary: #c8a876;
    --color-accent: #a67c52;
    --color-dark: #1a1a1a;
    --color-light: #f9f6f1;
    --color-white: #ffffff;
    --color-gray: #6b7280;
    --color-gray-light: #e5e7eb;
    --color-bg: #fdfcfa;
    --color-card-bg: #ffffff;
    --color-text: #333333;
    --color-text-light: #6b7280;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
}

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

a:hover {
    color: var(--color-secondary);
}

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

/* =============================================
   NAVBAR
   ============================================= */
.navbar-custom {
    background-color: var(--color-white);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    box-shadow: var(--shadow-md);
    padding: 0.5rem 0;
}

.navbar-custom .navbar-brand {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-dark);
    letter-spacing: -0.5px;
}

.navbar-custom .navbar-brand span {
    color: var(--color-secondary);
}

.navbar-custom .nav-link {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 1rem !important;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--color-accent);
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    width: 60%;
}

.navbar-custom .navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-custom .navbar-toggler:focus {
    box-shadow: none;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #3d3425 50%, var(--color-primary) 100%);
    color: var(--color-white);
    padding: 7rem 0 6rem;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(200, 168, 118, 0.08);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(200, 168, 118, 0.05);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.hero-section h1 span {
    color: var(--color-secondary);
}

.hero-section p {
    font-size: 1.15rem;
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}


.hero-badge {
    display: inline-block;
    background: rgba(200, 168, 118, 0.2);
    border: 1px solid rgba(200, 168, 118, 0.3);
    color: var(--color-secondary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-main {
    background-color: var(--color-secondary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-main:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-main {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.4);
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-outline-main:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25d366;
    color: var(--color-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background-color: #1fb855;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =============================================
   SECTION STYLING
   ============================================= */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.section-divider-center {
    width: 60px;
    height: 3px;
    background-color: var(--color-secondary);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

.bg-light-custom {
    background-color: var(--color-light);
}

/* =============================================
   CATEGORY CARDS
   ============================================= */
.category-card {
    background: var(--color-card-bg);
    border-radius: var(--radius);
    padding: 2.5rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-gray-light);
    height: 100%;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary);
}

.category-card .icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-light), rgba(200, 168, 118, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--color-accent);
    transition: var(--transition);
}

.category-card:hover .icon-wrap {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: var(--color-white);
}

.category-card h5 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.category-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =============================================
   PRODUCT CARDS
   ============================================= */
.product-card {
    background: var(--color-card-bg);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--color-gray-light);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.product-card .card-img-wrap {
    position: relative;
    overflow: hidden;
    height: 260px;
    background-color: var(--color-light);
}

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

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

.product-card .card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-category {
    font-size: 0.8rem;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-card .card-text {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.product-card .card-meta i {
    color: var(--color-secondary);
}

.product-card .btn-detail {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0;
    border: none;
    background: none;
    transition: var(--transition);
}

.product-card .btn-detail:hover {
    color: var(--color-secondary);
    gap: 0.7rem;
}

/* =============================================
   FEATURES / WHY US
   ============================================= */
.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
}

.feature-card .icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    color: var(--color-white);
}

.feature-card h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
    background: linear-gradient(135deg, var(--color-dark) 0%, #3d3425 100%);
    color: var(--color-white);
    padding: 4rem 0;
}

.cta-section h2 {
    color: var(--color-white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

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

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.product-detail-section {
    padding: 3rem 0 5rem;
}

.product-gallery-main {
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-light);
    margin-bottom: 1rem;
}

.product-gallery-main img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.product-gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-gallery-thumbs .thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-gallery-thumbs .thumb.active,
.product-gallery-thumbs .thumb:hover {
    border-color: var(--color-secondary);
}

.product-gallery-thumbs .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.product-info .product-cat-badge {
    display: inline-block;
    background: rgba(200, 168, 118, 0.15);
    color: var(--color-accent);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-specs {
    background: var(--color-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.product-specs .spec-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.product-specs .spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-specs .spec-item i {
    color: var(--color-secondary);
    margin-top: 0.2rem;
    font-size: 1rem;
}

.product-specs .spec-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text-light);
    min-width: 120px;
}

.product-specs .spec-value {
    font-size: 0.95rem;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-section {
    padding: 3rem 0 5rem;
}

.about-value-card {
    background: var(--color-card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
    transition: var(--transition);
}

.about-value-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.about-value-card .icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(200, 168, 118, 0.15), rgba(166, 124, 82, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-section {
    padding: 3rem 0 5rem;
}

.contact-info-card {
    background: var(--color-card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
}

.contact-map-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
}

.contact-map-wrap iframe {
    width: 100%;
    height: 350px;
    display: block;
    border: none;
}

.contact-info-card .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-card .info-item:last-child {
    margin-bottom: 0;
}

.contact-info-card .info-item .icon-wrap {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(200, 168, 118, 0.15), rgba(166, 124, 82, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--color-accent);
}

.contact-form-card {
    background: var(--color-card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
}

.contact-form-card .form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-light);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-card .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(200, 168, 118, 0.15);
}

/* =============================================
   FILTER BAR (Model Listeleme)
   ============================================= */
.filter-bar {
    background: var(--color-card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-gray-light);
    margin-bottom: 2rem;
}

.filter-bar .form-select,
.filter-bar .form-control {
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-gray-light);
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
}

.filter-bar .form-select:focus,
.filter-bar .form-control:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(200, 168, 118, 0.15);
}

/* =============================================
   PAGINATION
   ============================================= */
.pagination-custom .page-link {
    border: 1px solid var(--color-gray-light);
    color: var(--color-text);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm) !important;
    margin: 0 0.2rem;
    font-size: 0.9rem;
    transition: var(--transition);
}

.pagination-custom .page-link:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.pagination-custom .page-item.active .page-link {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb-section {
    background-color: var(--color-light);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--color-gray-light);
}

.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.breadcrumb-section .breadcrumb-item a {
    color: var(--color-text-light);
}

.breadcrumb-section .breadcrumb-item a:hover {
    color: var(--color-accent);
}

.breadcrumb-section .breadcrumb-item.active {
    color: var(--color-accent);
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    background: linear-gradient(135deg, var(--color-dark) 0%, #3d3425 100%);
    color: var(--color-white);
    padding: 3.5rem 0;
    text-align: center;
}

.page-header h1 {
    color: var(--color-white);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.85;
    max-width: 500px;
    margin: 0 auto;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer h5 {
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer .footer-links li {
    margin-bottom: 0.6rem;
}

.footer .footer-links li a {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer .footer-contact li i {
    color: var(--color-secondary);
    margin-top: 0.2rem;
}

.footer .footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
    margin-right: 0.5rem;
    font-size: 1rem;
    transition: var(--transition);
}

.footer .footer-social a:hover {
    background: var(--color-secondary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
    font-size: 0.85rem;
    text-align: center;
}

/* =============================================
   WHATSAPP FLOATING BUTTON
   ============================================= */
.whatsapp-float-wrap {
    position: fixed;
    bottom: 2rem;
    right: 1rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-float-label {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
    white-space: nowrap;
    letter-spacing: 0.3px;
    animation: floatLabelBounce 2s ease-in-out infinite;
}

.whatsapp-float {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25d366;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@keyframes floatLabelBounce {
    0%, 100% { transform: translateY(0); }
    40% { transform: translateY(-5px); }
    60% { transform: translateY(-2px); }
}

/* =============================================
   ALERT / FLASH MESSAGES
   ============================================= */
.alert-custom-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
}

.alert-custom-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
    border-radius: var(--radius-sm);
    padding: 1rem 1.5rem;
}

/* =============================================
   LIGHTBOX (Ürün Görsel Popup)
   ============================================= */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
}

.lightbox-overlay.active {
    display: flex;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    animation: lightboxZoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition);
    z-index: 1;
}

.lightbox-close:hover {
    opacity: 1;
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

.product-gallery-main {
    cursor: zoom-in;
}

@keyframes lightboxZoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* =============================================
   SIMILAR PRODUCTS
   ============================================= */
.similar-products {
    padding: 3rem 0 5rem;
    background-color: var(--color-light);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 4rem 0 3.5rem;
    }
    .hero-section h1 {
        font-size: 2.2rem;
    }
    .section-padding {
        padding: 3.5rem 0;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .product-gallery-main img {
        height: 350px;
    }
}

@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .section-padding {
        padding: 3rem 0;
    }
    .product-card .card-img-wrap {
        height: 200px;
    }
    .product-gallery-main img {
        height: 280px;
    }
    .page-header {
        padding: 2.5rem 0;
    }
    .page-header h1 {
        font-size: 1.6rem;
    }
    .cta-section {
        text-align: center;
    }
    .whatsapp-float-wrap {
        bottom: 1.5rem;
        right: 0.10rem;
    }
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    .whatsapp-float-label {
        font-size: 0.65rem;
        padding: 0.25rem 0.6rem;
    }
}
