/* ========================================
   Crew Medya - PCKolik Custom Styles
   GeForce RTX Winter Campaign 2025
   Responsive: Desktop/Laptop + Mobile
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html{
    margin: 0;
    padding: 0;
    background-color: #000000!important;
    font-family: Arial, Helvetica, sans-serif;
}

/* ========================================
   Main Container
   ======================================== */

.crewmedya-pckolik-main-container {
    width: 100%;
    max-width: 1350px;
    margin: 0 auto;
    background-color: #000000;
}

/* ========================================
   Responsive Image Sections
   ======================================== */

.crewmedya-pckolik-section-image {
    width: 100%;
    display: block;
}

.crewmedya-pckolik-section-image img {
    width: 100%;
    height: auto;
}

/* ========================================
   DEFAULT: Desktop/Laptop View (769px and above)
   Desktop images visible, Mobile images hidden
   ======================================== */

img.crewmedya-pckolik-desktop-image {
    display: block !important;
}

img.crewmedya-pckolik-mobile-image {
    display: none !important;
}

/* ========================================
   Crew Medya Product Section Styles
   ======================================== */

.crewmedya-pckolik-product-section {
    width: 100%;
    margin: 0;
    background-color: #000000;
    padding: 80px 0 100px 0;
    position: relative;
}

.crewmedya-pckolik-section-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 48px;
    font-weight: bold;
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.crewmedya-pckolik-products-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    padding: 0 75px;
    flex-wrap: wrap;
    max-width: 1350px;
    margin: 0 auto;
}

/* Individual Product Card */
.crewmedya-pckolik-product-item {
    width: 300px;
    background-color: #000000;
    text-align: center;
    position: relative;
    flex-shrink: 0;
}

.crewmedya-pckolik-image-wrapper {
    width: 300px;
    height: 200px;
    background-color: #FFFFFF;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.crewmedya-pckolik-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.crewmedya-pckolik-product-category {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
    margin-bottom: 10px;
    line-height: 1.4;
}

.crewmedya-pckolik-product-title {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF;
    margin-bottom: 25px;
    line-height: 1.3;
    min-height: 52px;
}

.crewmedya-pckolik-cta-button {
    display: inline-block;
    background-color: #76B900;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 40px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.crewmedya-pckolik-cta-button:hover {
    background-color: #8ED000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(118, 185, 0, 0.4);
}

.crewmedya-pckolik-cta-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(118, 185, 0, 0.3);
}

/* ========================================
   Responsive Design - Tablet
   ======================================== */

@media screen and (max-width: 1350px) {
    .crewmedya-pckolik-products-grid {
        padding: 0 40px;
    }
}

@media screen and (max-width: 1024px) {
    .crewmedya-pckolik-products-grid {
        gap: 40px;
    }

    .crewmedya-pckolik-product-item {
        width: calc(33.333% - 27px);
        min-width: 250px;
    }

    .crewmedya-pckolik-image-wrapper {
        width: 100%;
    }
}

/* ========================================
   MOBILE VIEW (768px and below)
   Switch images: Hide desktop, Show mobile
   ======================================== */

@media screen and (max-width: 768px) {
    img.crewmedya-pckolik-desktop-image {
        display: none !important;
    }

    img.crewmedya-pckolik-mobile-image {
        display: block !important;
    }

    .crewmedya-pckolik-product-section {
        padding: 60px 0 80px 0;
    }

    .crewmedya-pckolik-section-title {
        font-size: 28px;
        margin-bottom: 40px;
        padding: 0 20px;
    }

    .crewmedya-pckolik-products-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 0 20px;
    }

    .crewmedya-pckolik-product-item {
        width: 100%;
        max-width: 300px;
    }

    .crewmedya-pckolik-image-wrapper {
        width: 100%;
        height: 180px;
    }

    .crewmedya-pckolik-product-title {
        font-size: 18px;
        min-height: auto;
        margin-bottom: 20px;
    }

    .crewmedya-pckolik-cta-button {
        padding: 12px 35px;
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    .crewmedya-pckolik-section-title {
        font-size: 24px;
        margin-bottom: 35px;
    }

    .crewmedya-pckolik-product-section {
        padding: 50px 0 70px 0;
    }

    .crewmedya-pckolik-products-grid {
        gap: 45px;
        padding: 0 15px;
    }

    .crewmedya-pckolik-product-item {
        max-width: 280px;
    }

    .crewmedya-pckolik-image-wrapper {
        height: 160px;
    }
}

