/*
 Theme Name:   Reprizo Child Theme
 Theme URI:    https://reprizo.axiomthemes.com/
 Description:  Reprizo Child Theme
 Author:       AxiomThemes
 Author URI:   https://axiomthemes.com/
 Template:     reprizo
 Version:      1.0
 Tags:         flexible-header, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, full-width-template, microformats, post-formats, theme-options, threaded-comments, translation-ready
 Text Domain:  reprizo
*/


/* =Theme customization starts here
------------------------------------------------------------ */

/* VIVIENNE WESTWOOD BRANDING */

:root {
    --brand-dark: #000000;
    --brand-gold: #d4af37;
    --brand-red: #8a0303;
    --brand-grey: #f4f4f4;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

body {
    font-family: var(--font-body);
    color: #333;
}

h1,
h2,
h3,
h4,
h5,
h6,
.sc_item_title,
.sc_layouts_title_caption {
    font-family: var(--font-heading);
    color: var(--brand-dark);
    font-weight: 700;
}

/* Headers & Footers Overrides */
.top_panel_default .scheme_default,
.footer_wrap {
    background-color: var(--brand-dark) !important;
    color: #fff !important;
}

.footer_wrap a,
.footer_wrap h1,
.footer_wrap h2,
.footer_wrap h3,
.footer_wrap h4 {
    color: #fff !important;
}

/* Buttons & Accents */
a:hover,
.theme_button:hover,
.sc_button:hover {
    color: var(--brand-gold) !important;
}

.sc_button,
.theme_button,
button,
input[type="submit"] {
    font-family: var(--font-body);
    background-color: var(--brand-dark);
    color: #fff;
    border: 1px solid var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sc_button:hover,
.theme_button:hover,
button:hover,
input[type="submit"]:hover {
    background-color: #fff;
    color: var(--brand-dark);
    border-color: var(--brand-dark);
}

/* Price & Highlights */
.price,
.woocommerce ul.products li.product .price {
    color: var(--brand-dark);
    font-weight: bold;
    font-family: var(--font-heading);
}

ins {
    color: var(--brand-red) !important;
    text-decoration: none;
}

/* =====================================================
   HEADER CUSTOMIZATION
   ===================================================== */
.top_panel {
    background-color: var(--brand-dark) !important;
}

/* Top Bar - Shipping Message */
.top_panel .sc_layouts_row_type_compact {
    background-color: var(--brand-gold);
    color: var(--brand-dark);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: 8px 0;
}

/* Logo Area */
.sc_layouts_logo img {
    max-height: 60px;
}

/* Main Navigation */
.sc_layouts_menu_nav>li>a {
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff !important;
    padding: 15px 20px;
}

.sc_layouts_menu_nav>li>a:hover,
.sc_layouts_menu_nav>li.current-menu-item>a {
    color: var(--brand-gold) !important;
}

/* Cart & Account Icons */
.sc_layouts_iconed_text .sc_layouts_item_icon {
    color: #fff;
    font-size: 20px;
}

.sc_layouts_iconed_text:hover .sc_layouts_item_icon {
    color: var(--brand-gold);
}

/* =====================================================
   FOOTER - 4 COLUMNS
   ===================================================== */
.footer_wrap {
    background-color: var(--brand-dark) !important;
    padding: 60px 0 30px;
}

.footer_wrap .widget_area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width: 991px) {
    .footer_wrap .widget_area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer_wrap .widget_area {
        grid-template-columns: 1fr;
    }
}

.footer_wrap .widget .widget_title {
    color: var(--brand-gold) !important;
    font-family: var(--font-heading);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_wrap .widget ul li {
    margin-bottom: 10px;
}

.footer_wrap .widget ul li a {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 14px;
    transition: all 0.3s;
}

.footer_wrap .widget ul li a:hover {
    color: var(--brand-gold) !important;
    padding-left: 5px;
}

/* Footer Social Icons */
.footer_wrap .social_item a {
    color: #fff !important;
    font-size: 18px;
    margin-right: 15px;
}

.footer_wrap .social_item a:hover {
    color: var(--brand-gold) !important;
}

/* Footer Copyright */
.footer_copyright_wrap {
    background-color: #111 !important;
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* Payment Icons */
.footer_payment_icons img {
    height: 30px;
    margin: 0 5px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s;
}

.footer_payment_icons img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* =====================================================
   HOMEPAGE BLOCKS
   ===================================================== */

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: inline-block;
    padding: 15px 40px;
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    transition: all 0.3s;
}

.hero-btn:hover {
    background-color: var(--brand-gold);
    color: #000;
}

/* USP Bar */
.usp-bar {
    background-color: var(--brand-grey);
    padding: 30px 0;
}

.usp-bar .usp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

@media (max-width: 767px) {
    .usp-bar .usp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.usp-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.usp-item .usp-icon {
    font-size: 28px;
    color: var(--brand-gold);
    margin-bottom: 10px;
}

.usp-item .usp-title {
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
}

/* Collection Grid */
.collection-grid {
    padding: 80px 0;
}

.collection-grid .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .collection-grid .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.collection-card {
    position: relative;
    overflow: hidden;
    height: 400px;
}

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

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

.collection-card .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: #fff;
}

.collection-card .overlay h3 {
    color: #fff;
    margin-bottom: 5px;
}

.collection-card .overlay a {
    color: var(--brand-gold);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

/* Featured Products */
.featured-products {
    padding: 80px 0;
    background-color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
}

/* Product Card */
.product-card {
    text-align: center;
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: var(--brand-grey);
}

.product-card .product-image img {
    width: 100%;
    transition: transform 0.3s;
}

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

.product-card .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--brand-gold);
    color: #000;
    padding: 5px 10px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
}

.product-card .product-badge.sale {
    background-color: var(--brand-red);
    color: #fff;
}

.product-card .quick-actions {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover .quick-actions {
    opacity: 1;
}

.product-card .quick-actions button {
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.product-card .quick-actions button:hover {
    background: var(--brand-gold);
}

.product-card h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.product-card .price {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
}

.product-card .price del {
    color: #999;
    font-size: 14px;
    margin-right: 10px;
}

/* Brand Story Section */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

@media (max-width: 991px) {
    .brand-story {
        grid-template-columns: 1fr;
    }
}

.brand-story .story-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.brand-story .story-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: var(--brand-dark);
    color: #fff;
}

.brand-story .story-content h2 {
    color: var(--brand-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.brand-story .story-content blockquote {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.5rem;
    color: #fff;
    border-left: 3px solid var(--brand-gold);
    padding-left: 20px;
    margin: 20px 0;
}

.brand-story .story-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--brand-grey);
    text-align: center;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px;
}

.testimonial-card .stars {
    color: var(--brand-gold);
    font-size: 20px;
    margin-bottom: 20px;
}

.testimonial-card blockquote {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Newsletter */
.newsletter {
    padding: 80px 0;
    background-color: var(--brand-dark);
    text-align: center;
    color: #fff;
}

.newsletter h2 {
    color: #fff;
    margin-bottom: 10px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.newsletter form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter input[type="email"] {
    flex: 1;
    padding: 15px 20px;
    border: none;
    font-size: 16px;
}

.newsletter button {
    padding: 15px 30px;
    background-color: var(--brand-gold);
    color: #000;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.newsletter button:hover {
    background-color: #fff;
}

/* WooCommerce Product Grid Enhancements */
.woocommerce ul.products li.product {
    text-align: center;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--font-heading);
    font-size: 16px;
}

.woocommerce ul.products li.product .button {
    background-color: var(--brand-dark);
    color: #fff;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.woocommerce ul.products li.product .button:hover {
    background-color: var(--brand-gold);
    color: #000;
}

/* Single Product Page */
.woocommerce div.product .product_title {
    font-family: var(--font-heading);
    font-size: 2rem;
}

.woocommerce div.product p.price {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--brand-dark);
}

.woocommerce div.product .single_add_to_cart_button {
    background-color: var(--brand-dark) !important;
    padding: 15px 40px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.woocommerce div.product .single_add_to_cart_button:hover {
    background-color: var(--brand-gold) !important;
    color: #000 !important;
}

/* Trust Badges on Product Page */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #eee;
    background-color: var(--brand-grey);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.trust-badge .icon {
    color: var(--brand-gold);
    font-size: 20px;
}

/* =====================================================
   INSTAGRAM FEED SECTION
   ===================================================== */
.instagram-feed-section {
    padding: 80px 0;
    background-color: #fff;
}

.instagram-feed-section .section-title {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-feed-section .section-title h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.instagram-feed-section .section-title p {
    color: #666;
}

.instagram-feed-section .instagram-handle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand-gold);
    font-weight: 600;
    margin-top: 10px;
}

.instagram-feed-section .instagram-handle i {
    font-size: 24px;
}

/* Instagram Grid - Smash Balloon or Custom */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 5px;
}

@media (max-width: 991px) {
    .instagram-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 575px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.3s;
}

.instagram-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.instagram-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.3s;
    color: #fff;
    font-size: 14px;
}

.instagram-item:hover .overlay {
    opacity: 1;
}

.instagram-item .overlay span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.instagram-item .overlay i {
    font-size: 16px;
}

/* Smash Balloon Plugin Overrides */
#sb_instagram .sbi_photo_wrap {
    border-radius: 0 !important;
}

#sb_instagram .sbi_follow_btn a {
    background-color: var(--brand-dark) !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#sb_instagram .sbi_follow_btn a:hover {
    background-color: var(--brand-gold) !important;
    color: #000 !important;
}

#sb_instagram .sbi_header_text h3 {
    font-family: var(--font-heading) !important;
}

/* Load More Button */
#sb_instagram #sbi_load .sbi_load_btn {
    background-color: var(--brand-dark) !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#sb_instagram #sbi_load .sbi_load_btn:hover {
    background-color: var(--brand-gold) !important;
    color: #000 !important;
}