
/* =========================================================
   GIFTS TO HYDERABAD 24x7
   Main Website Stylesheet
========================================================= */


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
}


/* =========================
   CONTAINER
========================= */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}


/* =========================
   HEADER
========================= */

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
    position: relative;
    z-index: 1000;
}

.header-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;

    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* LOGO */

.site-logo a {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.logo-main {
    font-size: 24px;
    font-weight: 800;
    color: #d81b60;
}

.logo-sub {
    font-size: 18px;
    font-weight: 700;
    color: #ff9800;
}


/* NAVIGATION */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-navigation a {
    color: #333;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.main-navigation a:hover {
    color: #d81b60;
}


/* CART */

.header-cart {
    background: #d81b60;
    color: #ffffff !important;

    padding: 10px 15px;

    border-radius: 25px;
}

.header-cart:hover {
    background: #ad1457;
}

.cart-count {
    display: inline-flex;

    min-width: 20px;
    height: 20px;

    align-items: center;
    justify-content: center;

    margin-left: 4px;

    background: #ffffff;
    color: #d81b60;

    border-radius: 50%;

    font-size: 12px;
    font-weight: bold;
}


/* MOBILE BUTTON */

.mobile-menu-button {
    display: none;

    border: none;
    background: transparent;

    font-size: 28px;
    cursor: pointer;
}


/* =========================
   MAIN
========================= */

.site-main {
    min-height: 500px;
}


/* =========================
   HERO
========================= */

.hero {
    background:
        linear-gradient(
            90deg,
            rgba(255, 247, 250, 0.98) 0%,
            rgba(255, 247, 250, 0.90) 40%,
            rgba(255, 247, 250, 0.45) 70%,
            rgba(255, 247, 250, 0.15) 100%
        );

    padding: 55px 0;
}

.hero-content {
    min-height: 500px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 45px;
}


/* HERO TEXT */

.hero-text {
    max-width: 600px;
}

.small-title {
    color: #d81b60;

    font-size: 14px;
    font-weight: 800;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.15;

    color: #222;

    margin-bottom: 20px;
}

.hero h1 span {
    display: block;
    color: #d81b60;
}

.hero-text > p:not(.small-title) {
    font-size: 18px;

    color: #666;

    max-width: 540px;

    margin-bottom: 28px;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    flex-wrap: wrap;

    gap: 14px;
}

.btn {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 28px;

    font-size: 15px;
    font-weight: 700;

    transition: 0.3s;
}

.btn-primary {
    background: #d81b60;
    color: #ffffff;

    border: 2px solid #d81b60;
}

.btn-primary:hover {
    background: #ad1457;
    border-color: #ad1457;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #d81b60;

    border: 2px solid #d81b60;
}

.btn-secondary:hover {
    background: #d81b60;
    color: #ffffff;
    transform: translateY(-2px);
}


/* HERO IMAGE */

.hero-image {
    width: 100%;
    height: 430px;

    overflow: hidden;

    border-radius: 25px;

    background: #f5f5f5;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* =========================
   SECTION COMMON
========================= */

.section {
    padding: 65px 0;
}

.section-title {
    text-align: center;

    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 34px;
    color: #222;

    margin-bottom: 8px;
}

.section-title p {
    color: #777;
    font-size: 16px;
}


/* =========================
   CATEGORY GRID
========================= */

.category-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.category-card {
    background: #ffffff;

    border-radius: 15px;

    overflow: hidden;

    border: 1px solid #eeeeee;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);

    transition: 0.3s;
}

.category-card:hover {
    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.category-card img {
    width: 100%;
    height: 200px;

    object-fit: cover;
}

.category-card-content {
    padding: 18px;

    text-align: center;
}

.category-card h3 {
    color: #333;

    font-size: 20px;

    margin-bottom: 6px;
}

.category-card p {
    color: #777;
    font-size: 14px;
}


/* =========================================================
   PRODUCTS
========================================================= */

.product-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.product-card {
    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);

    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}


/* =========================================================
   PRODUCT IMAGE
   FIXED SIZE + CONTAIN
========================================================= */

/*
   This is the main fix.

   Product image area:
   Desktop = 250px high
   Image will fit inside without cropping.
*/

.product-image {
    width: 100%;
    height: 250px;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f8f8f8;
}

.product-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/*
   Compatibility for pages that use:

   .product-card img

   directly without .product-image
*/

.product-card > img {
    width: 100%;
    height: 250px;

    object-fit: contain;

    background: #f8f8f8;
}


/* PRODUCT INFORMATION */

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 18px;

    color: #333;

    margin-bottom: 8px;
}


/* PRODUCT CATEGORY */

.product-category {
    color: #999;

    font-size: 13px;

    margin-bottom: 5px;
}


/* PRODUCT TITLE */

.product-title {
    margin-bottom: 10px;
}

.product-title a {
    color: #333;

    transition: 0.25s;
}

.product-title a:hover {
    color: #d81b60;
}


/* =========================================================
   PRODUCT PRICE
========================================================= */

.product-price {
    font-size: 20px;

    color: #d81b60;

    font-weight: 800;

    margin-bottom: 8px;
}


/*
   USD price displayed beside INR
*/

.product-price small {
    font-size: 13px;

    color: #666;

    font-weight: 600;

    margin-left: 4px;

    white-space: nowrap;
}


/* SALE PRICE */

.sale-price {
    color: #d81b60;

    font-weight: 800;
}


/* REGULAR PRICE */

.regular-price {
    color: #999;

    font-size: 14px;

    text-decoration: line-through;

    margin-left: 8px;

    font-weight: 500;
}


/* OLD PRICE */

.old-price {
    color: #999;

    font-size: 14px;

    text-decoration: line-through;

    margin-left: 7px;
}


/* =========================================================
   PRODUCT STOCK
========================================================= */

.product-stock {
    margin-bottom: 12px;

    font-size: 13px;

    font-weight: 600;
}

.in-stock {
    color: #2e7d32;
}

.out-of-stock {
    color: #c62828;
}


/* =========================================================
   PRODUCT ACTIONS
========================================================= */

.product-actions {
    display: flex;

    gap: 8px;

    flex-wrap: wrap;
}

.product-actions .btn {
    padding: 9px 15px;

    font-size: 13px;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.features-section {
    background: #fff7fa;
}

.features-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.feature-card {
    text-align: center;

    background: #ffffff;

    padding: 30px 20px;

    border-radius: 15px;

    border: 1px solid #eeeeee;
}

.feature-icon {
    font-size: 40px;

    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 19px;

    margin-bottom: 8px;

    color: #333;
}

.feature-card p {
    color: #777;

    font-size: 14px;
}


/* =========================================================
   DELIVERY CTA
========================================================= */

.delivery-section {
    padding: 65px 0;
}

.delivery-box {
    background: #d81b60;

    color: #ffffff;

    border-radius: 22px;

    padding: 50px;

    text-align: center;
}

.delivery-box h2 {
    font-size: 36px;

    margin-bottom: 12px;
}

.delivery-box p {
    font-size: 17px;

    margin-bottom: 25px;

    opacity: 0.95;
}

.delivery-box .btn {
    background: #ffffff;

    color: #d81b60;

    border-color: #ffffff;
}

.delivery-box .btn:hover {
    background: #f5f5f5;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    background: #222222;

    color: #ffffff;

    margin-top: 60px;
}


/* FOOTER CONTAINER */

.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    padding: 55px 25px 45px;

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr
        1.3fr;

    gap: 35px;
}


/* FOOTER COLUMNS */

.footer-column h3 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 18px;

    font-weight: 700;
}

.footer-about h3 {
    font-size: 23px;
}

.footer-about h3 span {
    color: #e91e63;
}

.footer-column p {
    margin: 0 0 12px;

    color: #cccccc;

    font-size: 14px;

    line-height: 1.7;
}


/* FOOTER LINKS */

.footer-column ul {
    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-column ul li {
    margin-bottom: 11px;
}

.footer-column ul li a,
.footer-contact a {
    color: #cccccc;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.25s ease;
}

.footer-column ul li a:hover,
.footer-contact a:hover {
    color: #e91e63;

    padding-left: 3px;
}


/* LOCATION */

.footer-location {
    margin-top: 20px !important;
}


/* CONTACT */

.footer-contact p {
    margin-bottom: 15px;
}


/* FOOTER BOTTOM */

.footer-bottom {
    border-top: 1px solid #3a3a3a;
}

.footer-bottom-inner {
    max-width: 1200px;

    margin: 0 auto;

    padding: 20px 25px;

    text-align: center;
}

.footer-bottom p {
    margin: 0;

    color: #999999;

    font-size: 13px;
}


/* =========================================================
   SECOND HEADER
   CURRENT WEBSITE HEADER
========================================================= */

.header {
    background: #ffffff;

    border-bottom: 1px solid #eeeeee;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    position: sticky;

    top: 0;

    z-index: 1000;
}

.header-inner {
    min-height: 76px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    text-decoration: none;

    font-size: 26px;

    font-weight: 800;

    color: #222222;

    white-space: nowrap;

    letter-spacing: -0.5px;
}

.logo span {
    color: #e91e63;
}


/* =========================================================
   NAVIGATION
========================================================= */

.main-nav {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 26px;

    flex: 1;
}

.main-nav a {
    position: relative;

    text-decoration: none;

    color: #333333;

    font-size: 15px;

    font-weight: 600;

    padding: 28px 0;

    transition: color 0.25s ease;
}

.main-nav a:hover {
    color: #e91e63;
}

.main-nav a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 20px;

    width: 0;

    height: 2px;

    background: #e91e63;

    transition: width 0.25s ease;
}

.main-nav a:hover::after {
    width: 100%;
}


/* =========================================================
   HEADER ACTIONS
========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;
}

.header-icon {
    width: 42px;

    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    color: #333333;

    border-radius: 50%;

    transition: all 0.25s ease;
}

.header-icon span {
    font-size: 25px;

    line-height: 1;
}

.header-icon:hover {
    background: #fff0f5;

    color: #e91e63;
}


/* =========================================================
   CART
========================================================= */

.cart-button {
    height: 44px;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 0 15px;

    border-radius: 24px;

    background: #e91e63;

    color: #ffffff;

    text-decoration: none;

    font-size: 14px;

    font-weight: 700;

    transition: all 0.25s ease;
}

.cart-button:hover {
    background: #c2185b;

    color: #ffffff;

    transform: translateY(-1px);
}

.cart-icon {
    font-size: 17px;
}

.cart-count {
    min-width: 20px;

    height: 20px;

    padding: 0 5px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    background: #ffffff;

    color: #e91e63;

    border-radius: 50%;

    font-size: 11px;

    font-weight: 800;
}


/* =========================================================
   HEADER TABLET
========================================================= */

@media (max-width: 1000px) {

    .header-inner {
        gap: 15px;
    }

    .main-nav {
        gap: 15px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .logo {
        font-size: 23px;
    }

    .footer-container {
        grid-template-columns: repeat(3, 1fr);

        gap: 30px;
    }

    .footer-about {
        grid-column: span 3;
    }

}


/* =========================================================
   OLD TABLET / GENERAL RESPONSIVE
========================================================= */

@media (max-width: 900px) {

    .main-navigation {
        gap: 12px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .category-grid,
    .product-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE HEADER
========================================================= */

@media (max-width: 768px) {

    .header-inner {
        min-height: 65px;

        gap: 10px;
    }

    .logo {
        font-size: 21px;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        margin-left: auto;
    }

    .header-icon {
        width: 38px;

        height: 38px;
    }

    .header-icon span {
        font-size: 22px;
    }

    .cart-button {
        height: 40px;

        padding: 0 11px;
    }

    .cart-button span:nth-child(2) {
        display: none;
    }

    /* PRODUCT IMAGE */

    .product-image {
        height: 220px;
    }

    .product-image img {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

    .product-card > img {
        height: 220px;

        object-fit: contain;
    }

}


/* =========================================================
   MOBILE MENU / HERO / SECTIONS
========================================================= */

@media (max-width: 700px) {

    .header-container {
        min-height: 68px;
    }

    .mobile-menu-button {
        display: block;
    }

    .main-navigation {
        display: none;

        position: absolute;

        top: 68px;

        left: 0;

        right: 0;

        background: #ffffff;

        padding: 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        border-top: 1px solid #eeeeee;

        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    }

    .main-navigation.mobile-open {
        display: flex;
    }

    .main-navigation a {
        padding: 12px 10px;

        border-bottom: 1px solid #eeeeee;
    }

    .header-cart {
        text-align: center;

        margin-top: 8px;
    }


    /* HERO */

    .hero {
        padding: 35px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;

        min-height: auto;

        gap: 30px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-text > p:not(.small-title) {
        font-size: 16px;
    }

    .hero-image {
        height: 300px;

        order: 2;
    }


    /* SECTIONS */

    .section {
        padding: 45px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .category-grid,
    .product-grid,
    .features-grid {
        grid-template-columns: 1fr 1fr;

        gap: 15px;
    }

    .category-card img {
        height: 150px;
    }

    /*
       Product images on mobile
    */

    .product-image {
        height: 200px;
    }

    .product-image img {
        height: 100%;

        object-fit: contain;
    }

    .product-card > img {
        height: 200px;

        object-fit: contain;
    }


    /* PRODUCT PRICE */

    .product-price {
        font-size: 18px;
    }

    .product-price small {
        font-size: 12px;
    }


    /* DELIVERY */

    .delivery-box {
        padding: 35px 20px;
    }

    .delivery-box h2 {
        font-size: 28px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr 1fr;

        padding: 40px 20px;

        gap: 30px 20px;
    }

    .footer-about {
        grid-column: span 2;
    }

    .footer-column h3 {
        font-size: 16px;

        margin-bottom: 15px;
    }

    .footer-about h3 {
        font-size: 21px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container,
    .header-container,
    .footer-container {
        width: 92%;
    }

    .logo-main {
        font-size: 19px;
    }

    .logo-sub {
        font-size: 15px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;

        width: 100%;
    }

    .category-grid,
    .product-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .category-card img {
        height: 190px;
    }


    /*
       Product image on very small screens
    */

    .product-image {
        height: 240px;
    }

    .product-image img {
        height: 100%;

        object-fit: contain;
    }

    .product-card > img {
        height: 240px;

        object-fit: contain;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-about {
        grid-column: span 1;
    }

    .footer-bottom-inner {
        padding: 18px 15px;
    }

}


/* =====================================================
   USD EQUIVALENT
===================================================== */

.usd-price {
    color: #777;
    font-size: 12px;
    font-weight: 500;
}

.usd-total {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 12px;
    font-weight: 500;
}

.usd-summary {
    display: block;
    margin-top: 3px;
    color: #777;
    font-size: 12px;
    font-weight: 500;
}

.usd-summary-total {
    display: block;
    margin-top: 4px;
    color: #777;
    font-size: 14px;
    font-weight: 600;
}
