/* ===== Golden Hook — Single Product (Etsy Style) ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&family=Lato:wght@400;600;700&display=swap');

.gh-product-wrap {
    max-width: 1150px;
    margin: 55px auto;
    padding: 0 24px;
}
.gh-product {
    display: flex;
    gap: 55px;
    align-items: flex-start;
}
.gh-product-gallery {
    flex: 1.1;
    max-width: 540px;
    position: sticky;
    top: 30px;
}
.gh-main-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}
.gh-product-info {
    flex: 1;
    padding-top: 6px;
}
.gh-product-title {
    font-family: 'Playfair Display', serif !important;
    text-transform: none !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin: 0 0 20px !important;
    color: #1a1a1a;
}
.gh-product-price {
    font-family: 'Lato', sans-serif;
    font-size: 27px;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 26px;
}
.gh-product-buy .edd_download_purchase_form {
    margin: 0 0 30px;
}
.gh-product-buy .edd-add-to-cart,
.gh-product-buy .button {
    background: #2e7d32 !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 16px 45px !important;
    color: #fff !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    letter-spacing: 0.3px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(46,125,50,0.3);
    transition: all 0.3s ease !important;
}
.gh-product-buy .edd-add-to-cart:hover,
.gh-product-buy .button:hover {
    background: #256428 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(46,125,50,0.4);
}
.gh-product-desc {
    font-family: 'Lato', sans-serif;
    font-size: 15.5px;
    line-height: 1.9;
    color: #444;
    border-top: 1px solid #eee;
    padding-top: 26px;
}
.gh-product-desc p {
    margin-bottom: 14px;
}

@media (max-width: 768px) {
    .gh-product {
        flex-direction: column;
        gap: 30px;
    }
    .gh-product-gallery {
        max-width: 100%;
        position: static;
    }
    .gh-product-title {
        font-size: 25px !important;
    }
}/* ===== Golden Hook — Reviews ===== */
.gh-reviews {
    max-width: 850px;
    margin: 55px auto 0;
    padding: 40px 0 0;
    border-top: 1px solid #eee;
}
.gh-reviews-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    color: #1a1a1a;
    margin: 0 0 12px !important;
}
.gh-reviews-summary {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}
.gh-stars-big {
    color: #f5a623;
    font-size: 22px;
    letter-spacing: 2px;
}
.gh-reviews-count {
    font-family: 'Lato', sans-serif;
    font-size: 14px;
    color: #888;
}
.gh-review {
    background: #fdfcfa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 16px;
    transition: box-shadow 0.3s ease;
}
.gh-review:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.07);
}
.gh-review-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}
.gh-review-name {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #222;
}
.gh-review-stars {
    color: #f5a623;
    font-size: 15px;
    letter-spacing: 1px;
}
.gh-review-text {
    font-family: 'Lato', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
    margin: 0;
}/* ===== Golden Hook — Gallery ===== */
.gh-gallery {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.gh-gallery-main {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}
.gh-gallery-main .gh-main-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    box-shadow: none;
}
.gh-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.25s ease;
    z-index: 2;
}
.gh-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.08);
}
.gh-prev { left: 14px; }
.gh-next { right: 14px; }
.gh-thumbs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.gh-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    opacity: 0.65;
    transition: all 0.2s ease;
}
.gh-thumb:hover { opacity: 1; }
.gh-thumb.active {
    border-color: #7a1f3d;
    opacity: 1;
}
@media (max-width: 768px) {
    .gh-gallery-main .gh-main-img { height: 340px; }
    .gh-thumb { width: 58px; height: 58px; }
}/* ===== Golden Hook — Arrows (refined) ===== */
.gh-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(30,30,30,0.35) !important;
    backdrop-filter: blur(4px);
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 15px;
    color: #fff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: none;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
}
.gh-gallery-main:hover .gh-arrow {
    opacity: 1;
}
.gh-arrow:hover {
    background: rgba(30,30,30,0.6) !important;
    transform: translateY(-50%) scale(1.05);
}
.gh-prev { left: 16px; }
.gh-next { right: 16px; }

/* ===== Golden Hook — Arrows Auto-hide Mobile ===== */
@media (max-width: 768px) {
    .gh-arrow {
        opacity: 0 !important;
        background: rgba(255,255,255,0.5) !important;
        backdrop-filter: blur(3px);
        color: #444 !important;
        width: 32px !important;
        height: 32px !important;
        font-size: 13px !important;
        transition: opacity 0.4s ease !important;
    }
    .gh-gallery.gh-touched .gh-arrow {
        opacity: 1 !important;
    }
    .gh-prev { left: 10px; }
    .gh-next { right: 10px; }
}
/* ===== Golden Hook — Shop Product Cards ===== */
.edd_downloads_list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}
.edd_download {
    width: calc(25% - 24px) !important;
    float: none !important;
    margin: 0 !important;
}
.edd_download_inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.09);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.edd_download_inner:hover {
    box-shadow: 0 14px 32px rgba(0,0,0,0.16);
    transform: translateY(-5px);
}
.edd_download_image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f7f5f2;
}
.edd_download_image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.edd_download_inner:hover .edd_download_image img {
    transform: scale(1.05);
}
.edd_download_title {
    font-family: 'Playfair Display', serif !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
    margin: 14px 14px 10px !important;
    padding: 0 !important;
    flex-grow: 1;
}
.edd_download_title a {
    color: #1a1a1a !important;
    text-decoration: none !important;
}
.edd_download_title a:hover {
    color: #7a1f3d !important;
}
/* حذف الوصف */
.edd_download_excerpt {
    display: none !important;
}
.edd_download_buy_button {
    margin: 0 14px 16px;
}
.edd_download_buy_button .edd-add-to-cart.button,
.edd_download_buy_button .button.blue {
    background: #7a1f3d !important;
    border: none !important;
    border-radius: 26px !important;
    padding: 10px 16px !important;
    color: #fff !important;
    font-family: 'Lato', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    width: 100%;
    text-align: center;
    cursor: pointer;
    box-shadow: none !important;
    transition: background 0.25s ease;
}
.edd_download_buy_button .edd-add-to-cart.button:hover,
.edd_download_buy_button .button.blue:hover {
    background: #5f1730 !important;
}
@media (max-width: 1024px) {
    .edd_download { width: calc(33.333% - 24px) !important; }
}
@media (max-width: 768px) {
    .edd_download { width: calc(50% - 24px) !important; }
}
.main-header-menu .menu-link {
    font-size: 16px !important;
    transition: all 0.3s ease;
    position: relative;
}

.main-header-menu .menu-link {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600 !important;
    color: #000000 !important;
}

.main-header-menu .menu-link:hover {
    color: #000000 !important;
}
Theme Name: Astra Child
Theme URI: https://wpastra.com/
Template: astra
Author: Brainstorm Force
Author URI: https://wpastra.com/about/?utm_source=theme_preview&utm_medium=author_link&utm_campaign=astra_theme
Description: The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
Tags: custom-menu,custom-logo,entertainment,one-column,two-columns,left-sidebar,e-commerce,right-sidebar,custom-colors,editor-style,featured-images,full-width-template,microformats,post-formats,rtl-language-support,theme-options,threaded-comments,translation-ready,blog
Version: 4.13.4.1783019774
Updated: 2026-07-02 19:16:14

*/

