@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Poppins:wght@300;400;600&display=swap');


/* =========================
   GLOBAL STYLES
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html{
    min-height:100%;
}

body{
    min-height:100vh;
    margin:0;
    padding-top:88px;

    font-family:'Poppins',sans-serif;
    color:#444;
    line-height:1.6;

    background-image:url("../images/background.png");
    background-repeat:no-repeat;
    background-position:center top;
    background-size:cover;
    background-attachment:fixed;
    background-color:#fffaf800;
}


h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #b56f87;
}

p {
    font-family: 'Playfair Display', serif;
    color: #000000;
}


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


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


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

header {

    position: sticky;
    top: 0;
    z-index: 999;

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

    padding: 20px 8%;

    background: rgba(255,255,255,0.95);

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}


.logo {

    font-family: 'Playfair Display', serif;

    font-size: 32px;

    font-weight: bold;

    color: #b56f87;

}


nav a {

    margin-left: 25px;

    font-size: 15px;

    transition: .3s;

}


nav a:hover,
nav .active {

    color: #d48ba5;

}



/* =========================
   BUTTONS
========================= */


button,
.btn {

    border: none;

    background: #d48ba5;

    color: white;

    padding: 13px 30px;

    border-radius: 50px;

    cursor: pointer;

    font-weight: 600;

    transition: .3s;

}


button:hover,
.btn:hover {

    background: #b56f87;

    transform: translateY(-3px);

}



/* =========================
   HERO SECTIONS
========================= */

.hero{
    min-height:100vh !important;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:30px 20px;
}

.shop-hero{
    min-height:22vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:25px 20px;
}

.hero-content{
    height:auto;
    width:100%;
    max-width:760px;
    margin:0 auto;
}

.hero h1{
    font-size:56px;
    line-height:1.15;
    margin-bottom:16px;
}

.hero p{
    font-size:18px;
    margin-bottom:26px;
}

.shop-hero h1{
    font-size:52px;
    margin-bottom:14px;
}

.shop-hero p{
    font-size:18px;
}
/* =========================
   SECTION TITLES
========================= */

.section-title {

    text-align: center;

    font-size: 45px;

    margin-bottom: 50px;

}



/* =========================
   SHOP PRODUCTS
========================= */

.shop {

    padding: 90px 8%;

}


.products-grid {

    display: grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap: 35px;

}


.product-card {

    background: rgba(255,255,255,0.92);

    border-radius:25px;

    overflow:hidden;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

    transition:.3s;

}


.product-card:hover {

    transform: translateY(-10px);

}


.product-card img {

    width:100%;

    height:280px;

    object-fit:cover;

}


.product-info {

    padding:25px;

    text-align:center;

}


.product-info h3 {

    font-size:28px;
    padding:25px;

}


.product-info h4 {

    font-size:24px;

    margin:20px 0;

    color:#b56f87;

}



/* =========================
   PRODUCT PAGE
========================= */


.product-page {

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    padding:100px 8%;

    align-items:center;

}


.product-image img {

    border-radius:30px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.1);

}


.product-details h1 {

    font-size:50px;

    margin-bottom:20px;

}


.description {

    margin-bottom:30px;

}


.price {

    font-size:35px;

    color:#d48ba5;

    font-weight:bold;

    margin:25px 0;

}


select,
textarea {

    width:100%;

    padding:15px;

    border-radius:15px;

    border:1px solid #ddd;

    margin:15px 0;

    font-family:inherit;

}


textarea {

    height:120px;

    resize:none;

}



/* =========================
   PRODUCT INFORMATION
========================= */


.product-info-section {

    padding:80px 8%;

    background:rgba(255,241,245,0.88);

    text-align:center;

}


.info-grid {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}


.info-grid div {

    background:rgba(255,255,255,0.92);

    padding:30px;

    border-radius:20px;

}



/* =========================
   REVIEWS
========================= */


.reviews {

    padding:80px 8%;

    text-align:center;

}


.review-card {

    background:rgba(255,255,255,0.92);

    display:inline-block;

    padding:30px;

    margin:15px;

    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

}



/* =========================
   CUSTOM ORDER SECTION
========================= */


.custom-order {

    text-align:center;

    padding:80px 8%;

    background:rgba(248,235,228,0.9);

}


.custom-order h2 {

    font-size:40px;

    margin-bottom:20px;

}



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


footer {

    background:#b56f87;

    color:white;

    text-align:center;

    padding:40px;

}




/* =========================
   CHECKOUT PAGE
========================= */


/* ==========================
   CHECKOUT FORM
========================== */

.checkout-container{
    width:100%;
    max-width:1000px;
    margin:0 auto;
}

.checkout-box,
.payment-box{

    width:100%;

    background:rgba(255,255,255,.95);

    padding:45px;

    margin-bottom:35px;

    border-radius:24px;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.checkout-box h2,
.payment-box h2{

    font-size:42px;

    color:#b57a93;

    margin-bottom:30px;

    font-family:'Playfair Display',serif;

}

.checkout-box label{

    display:block;

    font-size:18px;

    font-weight:600;

    margin:20px 0 10px;

}

.checkout-box input,
.checkout-box select,
.checkout-box textarea{

    width:100%;

    padding:18px 20px;

    font-size:18px;

    font-family:'Poppins',sans-serif;

    border:1px solid #ddd;

    border-radius:14px;

    background:white;

}

.checkout-box textarea{

    min-height:170px;

    resize:vertical;

}

.checkout-total{

    font-size:34px;

    margin-top:25px;

    color:#b57a93;

    font-weight:700;

}

.payment-box button{

    width:100%;

    padding:20px;

    font-size:22px;

    border:none;

    border-radius:14px;

    background:#b57a93;

    color:white;

    cursor:pointer;

    transition:.3s;

}

.payment-box button:hover{

    background:#9d667d;

}

/* =========================
   CONFIRMATION PAGE
========================= */


.confirmation-hero {

    min-height:50vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:rgba(255,241,245,0.88);

    padding:40px;

}


.confirmation-hero h1 {

    font-size:55px;

    margin-bottom:20px;

}


.confirmation-section {

    padding:80px 8%;

}


.confirmation-box {

    max-width:700px;

    margin:auto;

    background:rgba(255,255,255,0.92);

    padding:40px;

    border-radius:25px;

    text-align:center;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}


.confirmation-box h2 {

    margin-bottom:30px;

}


.confirmation-box h3 {

    margin-top:25px;

    color:#b56f87;

}


.confirmation-box p {

    margin:8px 0;

}



/* =========================
   GALLERY PAGE
========================= */


.gallery-section {

    padding:90px 8%;

}


.gallery-grid {

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;

}


.gallery-item {

    position:relative;

    overflow:hidden;

    border-radius:25px;

    height:350px;

    box-shadow:
    0 15px 30px rgba(0,0,0,.08);

}


.gallery-item img {

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}


.gallery-item:hover img {

    transform:scale(1.1);

}


.gallery-overlay{
    position:absolute;
    left:0;
    bottom:0;
    width:100%;

    padding:22px 18px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.75)
    );

    color:#ffffff !important;

    font-family:'Poppins',sans-serif;
    font-size:22px;
    font-weight:600;
    line-height:1.25;

    text-align:left;

    text-shadow:
    0 2px 8px rgba(0,0,0,.55);
}

.gallery-message {

    text-align:center;

    padding:80px 8%;

    background:rgba(255,241,245,0.88);

}


.gallery-message h2 {

    font-size:40px;

    margin-bottom:15px;

}


/* =========================
   FAQ PAGE
========================= */


.faq-section {

    padding:90px 8%;

}


.faq-container {

    max-width:900px;

    margin:auto;

    display:flex;

    flex-direction:column;

    gap:25px;

}


.faq-card {

    background:rgba(255,255,255,0.92);

    padding:30px;

    border-radius:20px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}


.faq-card:hover {

    transform:translateY(-5px);

}


.faq-card h3 {

    color:#b56f87;

    font-size:24px;

    margin-bottom:15px;

}


.faq-card p {

    color:#555;

}


.faq-contact {

    text-align:center;

    padding:80px 8%;

    background:rgba(255,241,245,0.88);

}


.faq-contact h2 {

    font-size:40px;

    margin-bottom:15px;

}



/* =========================
   CONTACT PAGE
========================= */


.contact-section {

    padding:90px 8%;

}


.contact-grid {

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:60px;

    max-width:1200px;

    margin:auto;

}


.contact-info,
.contact-form {

    background:rgba(255,255,255,0.92);

    padding:40px;

    border-radius:25px;

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);

}


.contact-info h2,
.contact-form h2 {

    margin-bottom:25px;

}


.contact-info h3 {

    color:#b56f87;

    margin-top:20px;

}


.contact-form label {

    display:block;

    margin-top:15px;

    font-weight:600;

}


.contact-form input,
.contact-form select,
.contact-form textarea {

    width:100%;

    padding:15px;

    margin-top:8px;

    border-radius:12px;

    border:1px solid #ddd;

    font-family:inherit;

}


.contact-form textarea {

    height:150px;

    resize:none;

}


.contact-form button {

    margin-top:25px;

    width:100%;

}


.contact-message {

    text-align:center;

    padding:80px 8%;

    background:rgba(255,241,245,0.88);

}


.contact-message h2 {

    font-size:40px;

    margin-bottom:15px;

}



/* =========================
   ANIMATIONS
========================= */


.product-card,
.review-card,
.info-grid div,
.faq-card {

    animation:
    fadeUp .7s ease;

}


@keyframes fadeUp {

    from {

        opacity:0;

        transform:translateY(30px);

    }


    to {

        opacity:1;

        transform:translateY(0);

    }

}



/* =========================
   MOBILE DESIGN
========================= */


@media(max-width:768px){

body{
    padding-top:0;
    background-attachment:scroll;
    background-position:center top;
    background-size:cover;
}

header {

    flex-direction:column;

    gap:15px;

}


nav a {

    margin-left:10px;

}


.hero h1,
.shop-hero h1 {

    font-size:42px;

}


.product-page {

    grid-template-columns:1fr;

}


.product-details h1 {

    font-size:38px;

}


.basket-item {

    flex-direction:column;

    gap:20px;

    text-align:center;

}


.basket-summary {

    text-align:center;

}


.basket-buttons {

    justify-content:center;

    flex-direction:column;

}


.contact-grid {

    grid-template-columns:1fr;

}

.map-container iframe{

    height:300px;

}


}

 .gallery-overlay{
        padding:18px 14px;
        font-size:18px;
    }




/* ===================================
   SHARED FINAL UTILITIES
=================================== */

html,
body{
    margin:0;
    min-height:100%;
}

body{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    padding-top:88px;
    background-image:url("../images/background.png") !important;
    background-size:cover !important;
    background-position:center top !important;
    background-repeat:no-repeat !important;
    background-attachment:fixed !important;
}

footer{
    margin-top:auto;
}

.checkout-product{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #eee;
}

.checkout-product p{
    margin:0;
}

.hidden-field{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}

/* ===================================
   CHECKOUT VALIDATION
=================================== */

.checkout-box input.valid-field,
.checkout-box select.valid-field{
    border-color:#4f9b61;
    box-shadow:0 0 0 3px rgba(79,155,97,.12);
}

.checkout-box input.invalid-field,
.checkout-box select.invalid-field{
    border-color:#c95454;
    box-shadow:0 0 0 3px rgba(201,84,84,.12);
}

.validation-message{
    min-height:20px;
    margin:6px 0 0;
    font-family:'Poppins',sans-serif;
    font-size:13px;
    line-height:1.4;
}

.validation-message.valid-message{
    color:#41834f;
}

.validation-message.invalid-message{
    color:#b84141;
}

#payment-button:disabled{
    background:#cbb8c0;
    color:#fff;
    cursor:not-allowed;
    opacity:.75;
}

#payment-button:disabled:hover{
    background:#cbb8c0;
    transform:none;
}

/* ===================================
   SHARED WEBSITE HEADER
=================================== */

.site-header{
    position:fixed;
    top:0;
    left:0;
    z-index:5000;

    width:100%;
    min-height:88px;

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

    padding:14px 6%;

    background:rgba(255,255,255,.96);
    border-bottom:1px solid rgba(181,122,147,.16);
    box-shadow:0 4px 18px rgba(0,0,0,.07);
    backdrop-filter:blur(8px);
}

.site-logo{
    display:flex;
    align-items:center;
    gap:12px;
    color:#b57a93;
    text-decoration:none;
}

.site-logo-image{
    display:block;
    width:58px;
    height:58px;
    object-fit:contain;
}

.site-logo-text{
    font-family:'Playfair Display',serif;
    font-size:29px;
    font-weight:700;
    color:#b57a93;
    white-space:nowrap;
}

.site-nav{
    display:flex;
    align-items:center;
    gap:25px;
}

.site-nav a{
    position:relative;
    color:#4a4a4a;
    font-family:'Poppins',sans-serif;
    font-size:15px;
    font-weight:500;
    text-decoration:none;
    transition:color .2s ease;
}

.site-nav a:hover,
.site-nav a.active{
    color:#b57a93;
}

.site-nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    right:0;
    bottom:-8px;
    height:2px;
    background:#b57a93;
    border-radius:10px;
}

.basket-link{
    display:flex;
    align-items:center;
    gap:8px;
    padding:10px 15px;
    background:#b57a93;
    color:#fff !important;
    border-radius:999px;
    box-shadow:0 5px 14px rgba(181,122,147,.22);
}

.basket-link:hover{
    background:#9d667d;
}

.basket-link.active::after{
    display:none;
}

.basket-count-badge{
    min-width:25px;
    height:25px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0 7px;
    background:#fff;
    color:#b57a93;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

/* ===================================
   IMPROVED BASKET LAYOUT
=================================== */

.basket-section{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:50px 25px 80px;
}

.basket-container{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.basket-item{
    width:100%;
    display:grid;
    grid-template-columns:160px 1fr;
    gap:28px;
    align-items:start;
    padding:24px;
    background:rgba(255,255,255,.94);
    border-radius:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.basket-item img{
    width:160px !important;
    height:160px !important;
    object-fit:cover;
    border-radius:16px;
    flex-shrink:0;
}

.basket-details{
    width:100%;
}

.basket-details h3{
    margin:0 0 14px;
    font-size:28px;
    color:#b56f87;
}

.basket-details p{
    margin:7px 0;
    line-height:1.5;
}

.basket-price{
    margin-top:15px !important;
    font-size:22px;
    font-weight:700;
    color:#b56f87;
}

.basket-details button{
    margin-top:15px;
    padding:11px 24px;
}

.basket-summary{
    width:100%;
    margin-top:35px;
    padding:28px;
    background:rgba(255,255,255,.94);
    border-radius:22px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    text-align:right;
}

.basket-summary h2{
    margin-bottom:20px;
    font-size:30px;
}

.basket-buttons{
    display:flex;
    justify-content:flex-end;
    gap:16px;
}

.basket-buttons button,
.basket-buttons .btn{
    min-width:140px;
    text-align:center;
}

.collection-note{
    text-align:center;
    padding:70px 8%;
    background:rgba(255,241,245,.88);
}

/* ===================================
   GALLERY LIGHTBOX
=================================== */

.gallery-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
    width:100%;
    height:100%;
    align-items:center;
    justify-content:center;
    padding:30px;
}

.gallery-modal.open{
    display:flex;
}

.gallery-modal-backdrop{
    position:absolute;
    inset:0;
    background:rgba(15,15,15,.40);
}

.gallery-modal-content{
    position:relative;
    z-index:2;
    width:min(1100px,92vw);
    max-height:92vh;
    display:grid;
    grid-template-columns:70px minmax(0,1fr) 70px;
    grid-template-rows:minmax(0,1fr) auto;
    align-items:center;
    gap:18px;
    padding:28px;
    overflow:hidden;
}

.gallery-image-area{
    grid-column:2;
    grid-row:1;
    position:relative;
    width:100%;
    height:min(68vh,680px);
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

#gallery-image{
    display:block;
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    border-radius:18px;
    background:transparent;
}

.gallery-prev,
.gallery-next{
    position:static !important;
    transform:none !important;
    width:54px !important;
    height:54px !important;
    min-height:54px !important;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 !important;
    background:transparent !important;
    color:#fff !important;
    border:1px solid rgba(255,255,255,.2) !important;
    border-radius:50% !important;
    font-size:32px !important;
    cursor:pointer;
}

.gallery-prev{
    grid-column:1;
    grid-row:1;
    justify-self:center;
}

.gallery-next{
    grid-column:3;
    grid-row:1;
    justify-self:center;
}

.gallery-prev:hover,
.gallery-next:hover{
    background:#b57a93 !important;
    transform:none !important;
}

.close-gallery{
    position:absolute;
    top:14px;
    right:16px;
    z-index:5;
    width:48px !important;
    height:48px !important;
    min-height:48px !important;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 !important;
    background:#b57a93 !important;
    color:#fff !important;
    border:none !important;
    border-radius:50% !important;
    font-size:34px !important;
    line-height:1;
    cursor:pointer;
}

.close-gallery:hover{
    background:#9d667d !important;
    transform:none !important;
}

.gallery-counter,
#gallery-counter{
    display:none !important;
}

.gallery-modal-thumbnails{
    grid-column:1 / 4;
    grid-row:2;
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:10px;
    width:100%;
    max-width:100%;
    overflow-x:auto;
    padding:4px 2px 6px;
}

.gallery-modal-thumbnail{
    flex:0 0 auto;
    width:auto !important;
    height:auto !important;
    min-height:0 !important;
    padding:0 !important;
    margin:0 !important;
    overflow:hidden;
    background:transparent !important;
    border:2px solid transparent !important;
    border-radius:10px !important;
    line-height:0;
    cursor:pointer;
}

.gallery-modal-thumbnail img{
    display:block;
    width:auto !important;
    height:72px !important;
    max-width:none !important;
    object-fit:contain !important;
    margin:0 !important;
    padding:0 !important;
    border-radius:7px !important;
}

.gallery-modal-thumbnail.active,
.gallery-modal-thumbnail:hover{
    border-color:#d98ca8 !important;
    transform:none !important;
}

/* ===================================
   GOOGLE MAP
=================================== */

.map-section{
    width:100%;
    max-width:1200px;
    margin:80px auto;
    padding:0 20px;
    text-align:center;
}

.map-section h2{
    font-size:42px;
    margin-bottom:35px;
}

.map-container{
    width:100%;
    max-width:1000px;
    margin:0 auto;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.map-container iframe{
    display:block;
    width:100% !important;
    max-width:none !important;
    height:500px !important;
    border:0;
}

/* ===================================
   SOCIAL LINKS
=================================== */

.social-section{
    text-align:center;
    padding:70px 20px;
}

.social-section h2{
    font-size:42px;
    color:#b57a93;
    margin-bottom:15px;
}

.social-section p{
    max-width:650px;
    margin:0 auto 35px;
    color:#666;
}

.social-links{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
}

.social-links a{
    width:65px;
    height:65px;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fff;
    color:#b57a93;
    border-radius:50%;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    font-size:30px;
    text-decoration:none;
    transition:.3s;
}

.social-links a:hover{
    background:#b57a93;
    color:#fff;
    transform:translateY(-5px);
}

/* ===================================
   RESPONSIVE FINAL OVERRIDES
=================================== */

@media(max-width:900px){
    body{
        padding-top:0;
        background-attachment:scroll !important;
    }

    .site-header{
        position:relative;
        min-height:auto;
        flex-direction:column;
        gap:15px;
        padding:16px 20px;
    }

    .site-logo-image{
        width:50px;
        height:50px;
    }

    .site-logo-text{
        font-size:25px;
    }

    .site-nav{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:14px 20px;
    }

    .site-nav a{
        font-size:14px;
    }

    .basket-link{
        padding:8px 13px;
    }
}

@media(max-width:768px){
    .gallery-modal{
        padding:10px;
    }

    .gallery-modal-content{
        width:100%;
        max-width:100%;
        max-height:96vh;
        grid-template-columns:44px minmax(0,1fr) 44px;
        gap:5px;
        padding:14px 5px 12px;
        overflow:hidden;
    }

    .gallery-image-area{
        width:100%;
        height:62vh;
        max-height:520px;
    }

    #gallery-image{
        width:100%;
        height:100%;
        max-width:100%;
        max-height:100%;
        object-fit:contain;
        margin:0 auto;
        border-radius:14px;
    }

    .gallery-prev,
    .gallery-next{
        width:40px !important;
        height:40px !important;
        min-height:40px !important;
        font-size:23px !important;
    }

    .close-gallery{
        top:6px;
        right:6px;
        width:40px !important;
        height:40px !important;
        min-height:40px !important;
        font-size:27px !important;
    }

    .gallery-modal-thumbnails{
        justify-content:flex-start;
        overflow-x:auto;
        padding:8px 2px 4px;
    }

    .gallery-modal-thumbnail img{
        width:auto !important;
        height:56px !important;
    }

    .basket-section{
        padding:35px 15px 60px;
    }

    .basket-item{
        grid-template-columns:1fr;
        text-align:left;
    }

    .basket-item img{
        width:100% !important;
        height:auto !important;
        max-height:260px;
    }

    .basket-summary{
        text-align:center;
    }

    .basket-buttons{
        flex-direction:column;
    }

    .basket-buttons button,
    .basket-buttons .btn{
        width:100%;
    }

    .map-section{
        margin:50px auto;
        padding:0 14px;
    }

    .map-container{
        max-width:100%;
    }

    .map-container iframe{
        height:280px !important;
    }
}

@media(max-width:480px){
    .site-logo-text{
        font-size:22px;
    }

    .site-nav{
        gap:11px 15px;
    }

    .site-nav a{
        font-size:13px;
    }

    .gallery-image-area{
        height:55vh;
        max-height:440px;
    }
}