/*========================================================================================*/
/*                              GIFT SHOP THEME (OyeHappy Style)                           */
/*========================================================================================*/

/* General Body styling matches pastel and bright UI */
:root {
    --gs-primary-color: #f1665a;
    /* Warm Coral / Bright Pinkish Red */
    --gs-secondary-color: #fce8e6;
    /* Pastel Pink Bg */
    --gs-text-main: #2b2b2b;
    /* Deep Grey for text */
    --gs-text-muted: #6b6b6b;
    /* Soft grey */
    --gs-bg-main: #faf9f6;
    /* Warm Off-white / Cream */
    --gs-bg-white: #ffffff;
    --gs-shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --gs-shadow-hover: 0 10px 25px rgba(241, 102, 90, 0.15);
    --gs-radius-lg: 16px;
    --gs-radius-md: 12px;
}

body.gs-theme {
    font-family: 'Outfit', 'Inter', sans-serif !important;
    background-color: var(--gs-bg-main);
    color: var(--gs-text-main);
    -webkit-font-smoothing: antialiased;
}

/* Typography Overrides */
.gs-theme h1,
.gs-theme h2,
.gs-theme h3,
.gs-theme h4 {
    font-family: inherit;
    font-weight: 700;
    color: var(--gs-text-main);
    letter-spacing: -0.02em;
}

/* Button Stying */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    /* Fully rounded buttons */
    padding: 12px 28px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.gs-btn-primary {
    background-color: var(--gs-primary-color);
    color: var(--gs-bg-white);
    box-shadow: 0 4px 12px rgba(241, 102, 90, 0.3);
}

.gs-btn-primary:hover {
    background-color: #d9564b;
    color: var(--gs-bg-white);
    transform: translateY(-2px);
    box-shadow: var(--gs-shadow-hover);
}

.gs-btn-secondary {
    background-color: var(--gs-bg-white);
    color: var(--gs-primary-color);
    border: 2px solid var(--gs-primary-color);
}

.gs-btn-secondary:hover {
    background-color: var(--gs-secondary-color);
    color: var(--gs-primary-color);
    transform: translateY(-2px);
}

/* Product Cards */
.gs-card,
.gs-product-card {
    background: var(--gs-bg-white);
    border-radius: var(--gs-radius-lg);
    overflow: hidden;
    box-shadow: var(--gs-shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    padding: 15px;
    /* Added inner padding */
    height: 100%;
}

.gs-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--gs-shadow-hover);
}

.gs-product-media img {
    border-radius: var(--gs-radius-md);
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    transition: transform 0.5s ease;
}

.gs-product-card:hover .gs-product-media img {
    transform: scale(1.03);
}

.gs-product-body {
    padding: 20px 5px 5px;
    text-align: center;
}

.gs-product-title a {
    color: var(--gs-text-main);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    transition: color 0.2s;
}

.gs-product-title a:hover {
    color: var(--gs-primary-color);
}

.gs-product-price {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.gs-price-discounted {
    font-size: 18px;
    font-weight: 700;
    color: var(--gs-primary-color);
}

.gs-price-original {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--gs-text-muted);
}

.gs-btn-block {
    width: 100%;
    padding: 10px 15px;
}

/* Hero Section */
.gs-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #fce8e6 0%, #fff7f6 100%);
    border-radius: 0 0 30px 30px;
    margin-bottom: 40px;
}

.gs-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.gs-hero-text {
    flex: 1;
}

.gs-eyebrow {
    color: var(--gs-primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 15px;
}

.gs-hero-text h1 {
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--gs-text-main);
}

.gs-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gs-text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.gs-hero-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

/* Chip Row */
.gs-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gs-chip {
    background: var(--gs-bg-white);
    color: var(--gs-text-main);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    border: 1px solid #eee;
}

.gs-chip:hover {
    background: var(--gs-primary-color);
    color: var(--gs-bg-white);
    border-color: var(--gs-primary-color);
}

.gs-hero-visual {
    flex: 1;
    position: relative;
    border-radius: var(--gs-radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Section Header */
.gs-section {
    padding: 50px 0;
}

.gs-section-alt {
    background-color: #fff;
    padding: 60px 0;
}

.gs-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--gs-secondary-color);
    padding-bottom: 15px;
}

.gs-section-header h2 {
    font-size: 2rem;
    margin: 0;
    color: var(--gs-text-main);
}

.gs-link {
    color: var(--gs-primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s;
}

.gs-link:hover {
    text-decoration: underline;
    color: #d9564b;
}

/* Grids */
.gs-category-grid,
.gs-product-row {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

@media (max-width: 768px) {
    .gs-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .gs-hero-actions,
    .gs-chip-row {
        justify-content: center;
    }

    .gs-hero-text h1 {
        font-size: 2.2rem;
    }
}

/* Premium Animations */
@keyframes float {
    0% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(-20px);
    }

    100% {
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg) translateY(0);
    }
}

.gs-hero-image-main {
    animation: float 6s ease-in-out infinite;
}

/* Scroll-reveal utility classes for AOS compatibility */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

.gs-section-header h2 {
    position: relative;
    display: inline-block;
}

.gs-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 4px;
    background: #E11D48;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .gs-hero-image-main {
        animation: none;
    }
}