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

html {
    scroll-behavior: smooth;
}

:root {
    /* Color Palette - Ethereal Botanica */
    --primary-color: #2b3a30; /* Deep Forest Green */
    --primary-light: #44594c;
    --accent-color: #d4a373; /* Soft Gold/Sand */
    --accent-hover: #b5835a;
    --accent-soft: #f4e8df; /* Soft Blush/Sand Background */
    --text-dark: #1f2321;
    --text-light: #6a6e6b;
    --bg-light: #faf7f2; /* Creamy Off-White */
    --white: #ffffff;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Effects */
    --transition-fast: all 0.3s ease;
    --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-soft: 0 10px 30px rgba(43, 58, 48, 0.05);
    --shadow-hover: 0 20px 40px rgba(43, 58, 48, 0.1);
    --radius-sm: 4px;
    --radius-md: 12px;
    --radius-lg: 24px;
}

body {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.8;
    background-color: var(--bg-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6, .logo, .footer-logo {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-weight: 400;
}

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

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 5%;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
header {
    background-color: rgba(250, 247, 242, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(43, 58, 48, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    font-size: 32px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo span {
    color: var(--accent-color);
    font-style: italic;
    font-weight: 400;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 45px;
}

nav ul li a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    position: relative;
    padding-bottom: 8px;
    opacity: 0.8;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    transition: var(--transition);
}

nav ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

nav ul li a:hover::after {
    width: 100%;
}

/* =========================================
   HERO SLIDER
========================================= */
.hero-slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 10s ease-out;
    transform: scale(1.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43, 58, 48, 0.4) 0%, rgba(43, 58, 48, 0.7) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
}

.slide.active .hero-content {
    transform: translateY(0);
    opacity: 1;
}

.hero-content h1 {
    font-size: 84px;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1px;
}

.hero-content h1 i {
    font-style: italic;
    color: var(--accent-color);
    font-weight: 400;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 45px;
    font-weight: 300;
    color: rgba(255,255,255,0.9);
    letter-spacing: 1px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 16px 45px;
    background-color: transparent;
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 0;
    border: 1px solid var(--white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: -1;
}

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

.btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn-primary {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.btn-primary::before {
    background-color: var(--accent-hover);
}

.btn-primary:hover {
    color: var(--white);
    border-color: var(--accent-hover);
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 60px;
    pointer-events: none; /* Let clicks pass through empty space */
}

.slider-controls button {
    pointer-events: auto;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.slider-controls button:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 50px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.dot::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: 18px;
    height: 18px;
    border: 1px solid transparent;
    border-radius: 50%;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
}

.dot.active::after {
    border-color: var(--white);
}

/* =========================================
   SECTIONS GENERAL
========================================= */
.section {
    padding: 140px 0;
    background-color: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 80px;
    position: relative;
    font-style: italic;
}

.section-title span {
    display: block;
    font-family: var(--font-body);
    font-size: 13px;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* =========================================
   CATEGORIES (SERVICES)
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.category-card {
    position: relative;
    border-radius: 0; /* Elegant sharp corners or subtle radius */
    overflow: hidden;
    height: 480px;
    display: block;
    transition: var(--transition-slow);
    cursor: pointer;
    background: var(--white);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.category-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(43, 58, 48, 0.8) 0%, rgba(43, 58, 48, 0.2) 40%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    transition: var(--transition);
}

.category-card .overlay h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.category-card:hover .overlay h3 {
    transform: translateY(0);
}

.category-card .overlay p {
    color: rgba(255,255,255,0.8);
    font-family: var(--font-body);
    font-size: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.category-card:hover .overlay p {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   PRODUCTS
========================================= */
.product-card {
    text-align: center;
    background: transparent;
    transition: var(--transition);
    position: relative;
    padding-bottom: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    group: hover;
}

.product-card .img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
    background-color: var(--accent-soft);
}

.product-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.product-card .category-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    color: var(--primary-color);
    padding: 6px 15px;
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    transition: var(--transition);
}

.product-card:hover .category-tag {
    background: var(--primary-color);
    color: var(--white);
}

.product-card h3 {
    font-size: 22px;
    margin: 0 0 10px;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 500;
}

.product-card p {
    font-size: 14px;
    color: var(--text-light);
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.detail-btn {
    display: inline-block;
    padding: 0;
    background: transparent;
    color: var(--primary-color);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: var(--transition);
    position: relative;
}

.detail-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.product-card:hover .detail-btn::after {
    transform: scaleX(1);
    transform-origin: left;
}

.product-card:hover .detail-btn {
    color: var(--accent-hover);
}

/* =========================================
   CUSTOM DESIGNS (ÖZEL TASARIMLAR)
========================================= */
.custom-designs-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
}

@media (min-width: 576px) {
    .custom-designs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .custom-designs-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.custom-design-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
    aspect-ratio: 3/4;
    cursor: pointer;
}

.custom-design-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.custom-design-item:hover img {
    transform: scale(1.1);
}

.custom-design-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(43, 58, 48, 0.6) 0%, rgba(0,0,0,0) 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 30px;
}

.custom-design-item:hover .custom-design-overlay {
    opacity: 1;
}

.custom-design-overlay i {
    color: var(--white);
    font-size: 28px;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1) 0.1s;
}

.custom-design-item:hover .custom-design-overlay i {
    transform: translateY(0);
}

/* =========================================
   ABOUT SECTION (SEO)
========================================= */
.about-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    height: 600px;
    object-fit: cover;
}

.about-experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-color);
    color: var(--white);
    padding: 40px;
    border-radius: 50%;
    width: 180px;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 30px rgba(43, 58, 48, 0.3);
    border: 10px solid var(--white);
    text-align: center;
}

.about-experience .number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.about-experience .text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-content {
    flex: 1;
}

.about-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-highlight {
    background-color: var(--accent-soft);
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    margin: 35px 0;
}

.about-highlight h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.6;
}

.about-features {
    list-style: none;
    padding: 0;
    margin: 40px 0 0 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.about-features i {
    font-size: 24px;
    color: var(--accent-color);
    background: var(--bg-light);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.about-features li:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.about-features div strong {
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.about-features div span {
    font-size: 14px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .about-experience {
        right: 20px;
        width: 140px;
        height: 140px;
        padding: 20px;
    }
    
    .about-experience .number {
        font-size: 28px;
    }
}

/* =========================================
   CONTACT SECTION
========================================= */
.contact-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.contact-info {
    flex: 1;
    padding-right: 40px;
}

.contact-info .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.contact-info .section-title::after {
    display: none;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
    transition: var(--transition);
}

.info-item:hover {
    transform: translateX(10px);
}

.info-item i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 25px;
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: var(--text-light);
    font-size: 15px;
}

.info-item a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.contact-image {
    flex: 1;
    height: 600px;
    position: relative;
}

.contact-image::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--accent-color);
    z-index: 0;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* =========================================
   PRODUCT DETAIL PAGE
========================================= */
.product-detail-container {
    padding: 180px 0 120px;
    background-color: var(--bg-light);
}

.product-detail-wrapper {
    display: flex;
    gap: 80px;
    background: var(--white);
    padding: 60px;
    box-shadow: var(--shadow-soft);
}

.product-gallery {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: var(--accent-soft);
}

.thumbnail-list {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.thumbnail-list img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.thumbnail-list img:hover, .thumbnail-list img.active {
    opacity: 1;
}

.product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-info .category-badge {
    display: inline-block;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    align-self: flex-start;
}

.product-info h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: var(--primary-color);
    line-height: 1.2;
}

.product-info .desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-box h3 {
    font-family: var(--font-body);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.order-box p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-btn-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 45px;
    background-color: #25D366;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.whatsapp-btn-large i {
    font-size: 20px;
}

.whatsapp-btn-large:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

/* =========================================
   CATEGORY DETAIL HEADER
========================================= */
.page-header {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: var(--white);
    text-align: center;
    margin-top: 90px;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(43,58,48,0.6), rgba(43,58,48,0.8));
}

.page-header h1 {
    position: relative;
    z-index: 1;
    font-size: 64px;
    color: var(--white);
    letter-spacing: 2px;
}

.page-header h1::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 25px auto 0;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background-color: var(--primary-color);
    color: rgba(255,255,255,0.6);
    padding: 80px 0 40px;
    text-align: center;
}

.footer-logo {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.footer-logo span {
    color: var(--accent-color);
    font-style: italic;
}

footer p {
    font-size: 14px;
    letter-spacing: 0.5px;
    font-family: var(--font-body);
}

footer a {
    color: rgba(255,255,255,0.4);
    transition: var(--transition);
}

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

/* =========================================
   WHATSAPP FLOATING BUTTON
========================================= */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0px 10px 25px rgba(37, 211, 102, 0.4);
}

@keyframes pulse-animation {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    animation: pulse-animation 2.5s infinite;
}

.whatsapp-float:hover {
    animation: none;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 56px;
    }
    
    .contact-wrapper, .product-detail-wrapper {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
    
    .contact-image::before {
        display: none;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-image, .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        justify-content: center;
        gap: 15px;
        height: auto;
        padding: 15px 0;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }
    
    .product-detail-wrapper {
        padding: 25px;
    }
    
    .product-info h1 {
        font-size: 32px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}
